Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
| /** | |
| * | |
| * Arif Hosan | |
| *American International University Bangladesh | |
| * [email protected] | |
| * | |
| **/ | |
| #include<bits/stdc++.h> | |
| #define PI 2*acos(0.0) | |
| #define SIZE 1000000 |
| #include<bits/stdc++.h> | |
| #define PI 2*acos(0.0) | |
| #define SIZE 1000000 | |
| #define endl '\n' | |
| int caseno=1; | |
| #define CP() printf("Case %d: ",caseno++) | |
| #define R() freopen("in.txt","r",stdin) | |
| #define W() freopen("out.txt","w",stdout) | |
| #define RW R(); W(); | |
| #define SFI(_i) scanf("%d",&_i) |
| #include<iostream> | |
| #include<cstring> | |
| #include<string> | |
| #include<stack> | |
| #include<queue> | |
| #include<vector> | |
| #include<set> | |
| #include<map> | |
| #include<algorithm> | |
| #include<cstdio> |
| /* | |
| Arif Hosan | |
| AIUB, CSE | |
| */ | |
| #include<iostream> | |
| #include<cstring> | |
| #include<string> | |
| #include<stack> | |
| #include<queue> | |
| #include<vector> |
| #include<iostream> | |
| #include<cstring> | |
| #include<string> | |
| #include<stack> | |
| #include<queue> | |
| #include<vector> | |
| #include<set> | |
| #include<map> | |
| #include<algorithm> | |
| #include<cstdio> |
| #include<iostream> | |
| #include<cstring> | |
| #include<string> | |
| #include<stack> | |
| #include<queue> | |
| #include<vector> | |
| #include<set> | |
| #include<map> | |
| #include<algorithm> | |
| #include<cstdio> |
| /* | |
| 5 | |
| 8 11 | |
| 9 11 | |
| 10 12 | |
| 11 14 | |
| 12 14 | |
| */ | |
| #include<iostream> | |
| #include<cstring> |
| /* | |
| 5 100 | |
| 55 25 | |
| 5 15 | |
| 32 28 | |
| 27 20 | |
| 15 20 | |
| */ | |
| #include<iostream> | |
| #include<cstring> |
| /* | |
| Name: Md. Nabid Imteaj | |
| Prob: | |
| Algo: | |
| */ | |
| #pragma comment( linker, "/STACK:16777216" ) | |
| #pragma warning( disable:4786 ) | |
| #include <cmath> |
Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/