Created
December 24, 2016 04:24
-
-
Save menyf/e9ea4641d98c5bb21f5565fdc8f16623 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ___FILENAME___ | |
// Created by ___FULLUSERNAME___ on ___DATE___. | |
#include <set> | |
#include <map> | |
#include <list> | |
#include <stack> | |
#include <cmath> | |
#include <queue> | |
#include <cstdio> | |
#include <string> | |
#include <vector> | |
#include <iomanip> | |
#include <bitset> | |
#include <cstring> | |
#include <iostream> | |
#include <iosfwd> | |
#include <deque> | |
#include <algorithm> | |
#define Memset(a,val) memset(a,val,sizeof(a)) | |
#define PI acos(-1.0) | |
#define PB push_back | |
#define MP make_pair | |
#define rt(n) (i == n ? '\n' : ' ') | |
#define hi printf("Hi----------\n") | |
#define fre() freopen("data_in.txt","r",stdin); \ | |
freopen("data_out.txt","w",stdout); | |
#define debug(x) cout<<"Debug : --- "<<x<<" ---"<<endl; | |
#define debug2(x,y) cout<<"Debug : --- "<<x<<" , "<<y<<" ---"<<endl; | |
#define debug3(x,y,z) cout<<"Debug : --- "<<x<<" , "<<y<<" , "<<z<<" ---"<<endl; | |
#pragma comment(linker, "/STACK:1024000000,1024000000") | |
using namespace std; | |
typedef pair<int,int> PII; | |
typedef long long ll; | |
const int mod=1000000007; | |
const int INF=0x3f3f3f3f; | |
const double eps=1e-8; | |
const int maxn=100000+5; | |
int main(){ | |
<##> | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment