-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode.cpp
More file actions
46 lines (38 loc) · 1.06 KB
/
Copy pathcode.cpp
File metadata and controls
46 lines (38 loc) · 1.06 KB
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
/*Author : RAJ ROY*/
/*scholar id : 2212002*/
#include <bits/stdc++.h>
#include <vector>
using namespace std;
#ifndef ONLINE_JUDGE
#include "Debug.h"
#else
#define debug(...) 42
#endif
#define endl "\n"
#define ll long long
// #pragma GCC optimize("O1")
// #pragma GCC optimize("O2")
// #pragma GCC optimize("Ofast")
// #pragma GCC target("avx,avx2,fma")
// #pragma GCC optimize("O3,unroll-loops")
// #pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")
// #pragma GCC optimize("Ofast,no-stack-protector,no-stack-protector,fast-math")
/*****************************************************************************************************************************************/
void solve() {}
int main() {
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int t = 1;
// int t;
// cin >> t;
for (int i = 1; i <= t; i++) {
// cout << "Case #" << i << ":"<< " ";
solve();
}
return 0;
}