-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTemplate.cpp
More file actions
31 lines (29 loc) · 732 Bytes
/
Copy pathTemplate.cpp
File metadata and controls
31 lines (29 loc) · 732 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
#include <bits/stdc++.h>
using namespace std;
typedef long double ld;
typedef long long int ll;
#define endl "\n"
vector<vector<ll>> adjlist;
ll max(ll x, ll y) { return (x > y) ? x : y; }
ll min(ll x, ll y) { return (x > y) ? y : x; }
#define mod 1000000007
#define precision(precision) cout << fixed << setprecision(precision)
#define printTestCaseNum(x) cout << "Case #" << x << ": "
ll cases = 1, n, sum, m;
ll x, y;
void solveCase(ll testCaseNum)
{
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
// freopen("TestCasesInput.txt", "r", stdin);
// freopen("TestCaseOutput.txt", "w", stdout);
cin >> cases;
for (ll t = 1; t <= cases; t++)
{
solveCase(t);
}
return 0;
}