终于在博客写完第一篇题解啦

如题。用了三天……主要还是因为太懒,以后codeforces(div.2)或(div.1 + div2)只要参加了就写个题解。

放上我的代码格式,是用杜老师的%%%

#include <iostream>
#include <cstdio>
#include <algorithm>
#include <cstring>
#define rep(x, l, r) for(int x = (int)l; x <= (int)r; x++)
#define repd(x, r, l) for(int x = (int)r; x >= (int)l; x--)
#define clr(x,y) memset(x, y, sizeof(x))
#define mp(x, y) make_pair(x, y)
#define all(x) begin(x), end(x)
#define MAXN
#define fi first
#define se second;
#define Size(x) ((int)size(x))
using namespace std;
typedef long long LL;
typedef vector<int> vi;
typedef pair<int, int> pii;
const int INF = 1 << 30;
const int p = 10000007;
//head by DYH

int main(){
 
return 0;
}

猜你喜欢

转载自www.cnblogs.com/nblyz2003/p/9883488.html
今日推荐