forked from ncduy0303/Competitive-Programming
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcpDiv2c_796.cpp
More file actions
46 lines (33 loc) · 826 Bytes
/
cpDiv2c_796.cpp
File metadata and controls
46 lines (33 loc) · 826 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
#include <bits/stdc++.h>
using namespace std;
#define ar array
#define ll long long
#define ld long double
#define sza(x) ((int)x.size())
#define all(a) (a).begin(), (a).end()
const int MAX_N = 1e5 + 5;
const ll MOD = 1e9 + 7;
const ll INF = 1e9;
const ld EPS = 1e-9;
int solve(int x, string s, string a[])
{
}
int main() {
int tc ;
int alpha;
cin >> tc;
for (int t = 1; t <= tc; t++) {
int numOps;
string storeStrings[2*numOps];
int ans;
cin >> numOps;
for(int i = 0; i < 2*numOps; i++)
{
cin >>storeStrings[i];
}
string finalString ;
cin >> finalString;
ans = solve(numOps, finalString, storeStrings);
// cout << "Case #" << t << ": ";
}
}