-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathTemplate.cpp
More file actions
58 lines (43 loc) · 967 Bytes
/
Copy pathTemplate.cpp
File metadata and controls
58 lines (43 loc) · 967 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/*
Author : Rashedul Hasan Rijul ( Silent_coder ).
Created on : 2014-09-12
*/
#include<stdio.h>
#include<string.h>
#include<math.h>
#include<stdlib.h>
#include<ctype.h>
#include<iostream>
#include<algorithm>
#include<vector>
#include<string>
#include<queue>
#include<stack>
#include<map>
#include<set>
using namespace std;
#define maxm 2010
#define inf (1<<29)
#define ii int
#define pi acos(-1.0)
#define eps 1e-9
#define iseq(a,b) (fabs(a-b)<eps)
#define pii pair<int,int>
#define mp make_pair
#define uu first
#define vv second
ii on(ii n,ii k){ return (n|(1<<k)); }
ii off(ii n,ii k){ return (n-(n&(1<<k))); }
bool chck(ii n,ii k){ return (n&(1<<k)); }
ii mini(ii a,ii b){ if(a<b) return a; return b; }
ii maxi(ii a,ii b){ if(a>b) return a; return b; }
int n,m;
int main(){
int i,j,k,l,test,t=1;
//freopen("in.txt","r",stdin);
//freopen("out.txt","w",stdout);
scanf("%d",&test);
while(test--){
}
return 0;
}