# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
90401 | 2018-12-21T14:29:31 Z | mirbek01 | Marriage questions (IZhO14_marriage) | C++17 | 1500 ms | 5116 KB |
# include <bits/stdc++.h> using namespace std; const int N = 1e5 + 2; int n, m, k, mt[N], used[N], ans, L, R; vector <int> g[N], vr, mr; bool dfs(int v){ if(used[v]) return 0; vr.push_back(v); used[v] = 1; for(int to : g[v]){ if((to > R || to < L) && to <= n) continue; if(mt[to] == -1 || dfs(mt[to])){ if(mt[to] == -1) mr.push_back(to); if(mt[v] == -1) mr.push_back(v); mt[to] = v; mt[v] = to; return true; } } return false; } bool check(){ for(int i = 0; i < (int)mr.size(); i ++) mt[ mr[i] ] = -1; mr.clear(); for(int i = n + 1; i <= n + m; i ++){ for(int j = 0; j < (int)vr.size(); j ++){ used[ vr[j] ] = 0; } vr.clear(); dfs(i); } for(int i = n + 1; i <= n + m; i ++){ if(mt[i] == -1) return false; } return true; } int main(){ scanf("%d %d %d", &n, &m, &k); for(int i = 1; i <= k; i ++){ int a, b; scanf("%d %d", &a, &b); g[a].push_back(b + n); g[b + n].push_back(a); } memset(mt, -1, sizeof(mt)); int pt = 1; for(int i = 1; i <= n; i ++){ int lo = 1, hi = i; L = i, R = pt; while(pt <= n && !check()) pt ++, R = pt; ans += n - pt + 1; } printf("%d", ans); }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 4 ms | 3108 KB | Output is correct |
2 | Correct | 4 ms | 3140 KB | Output is correct |
3 | Correct | 4 ms | 3140 KB | Output is correct |
4 | Correct | 3 ms | 3188 KB | Output is correct |
5 | Correct | 3 ms | 3188 KB | Output is correct |
6 | Correct | 3 ms | 3204 KB | Output is correct |
7 | Correct | 3 ms | 3204 KB | Output is correct |
8 | Correct | 14 ms | 3204 KB | Output is correct |
9 | Correct | 3 ms | 3260 KB | Output is correct |
10 | Correct | 3 ms | 3304 KB | Output is correct |
11 | Correct | 4 ms | 3308 KB | Output is correct |
12 | Correct | 4 ms | 3308 KB | Output is correct |
13 | Correct | 3 ms | 3308 KB | Output is correct |
14 | Correct | 3 ms | 3308 KB | Output is correct |
15 | Correct | 4 ms | 3324 KB | Output is correct |
16 | Correct | 3 ms | 3324 KB | Output is correct |
17 | Correct | 4 ms | 3324 KB | Output is correct |
18 | Correct | 4 ms | 3324 KB | Output is correct |
19 | Correct | 12 ms | 3404 KB | Output is correct |
20 | Correct | 6 ms | 3404 KB | Output is correct |
21 | Correct | 4 ms | 3404 KB | Output is correct |
22 | Correct | 5 ms | 3404 KB | Output is correct |
23 | Correct | 10 ms | 3404 KB | Output is correct |
24 | Correct | 9 ms | 3404 KB | Output is correct |
25 | Correct | 161 ms | 3576 KB | Output is correct |
26 | Correct | 48 ms | 3576 KB | Output is correct |
27 | Correct | 5 ms | 3576 KB | Output is correct |
28 | Correct | 30 ms | 3576 KB | Output is correct |
29 | Correct | 20 ms | 3576 KB | Output is correct |
30 | Correct | 15 ms | 3576 KB | Output is correct |
31 | Execution timed out | 1570 ms | 3940 KB | Time limit exceeded |
32 | Correct | 740 ms | 3940 KB | Output is correct |
33 | Correct | 9 ms | 3940 KB | Output is correct |
34 | Correct | 1151 ms | 3940 KB | Output is correct |
35 | Execution timed out | 1576 ms | 4348 KB | Time limit exceeded |
36 | Execution timed out | 1571 ms | 4348 KB | Time limit exceeded |
37 | Execution timed out | 1561 ms | 4348 KB | Time limit exceeded |
38 | Execution timed out | 1569 ms | 4604 KB | Time limit exceeded |
39 | Execution timed out | 1582 ms | 4604 KB | Time limit exceeded |
40 | Correct | 790 ms | 4604 KB | Output is correct |
41 | Execution timed out | 1570 ms | 4604 KB | Time limit exceeded |
42 | Correct | 675 ms | 4604 KB | Output is correct |
43 | Correct | 766 ms | 4604 KB | Output is correct |
44 | Correct | 1347 ms | 4712 KB | Output is correct |
45 | Execution timed out | 1590 ms | 4712 KB | Time limit exceeded |
46 | Execution timed out | 1576 ms | 5048 KB | Time limit exceeded |
47 | Execution timed out | 1567 ms | 5048 KB | Time limit exceeded |
48 | Execution timed out | 1581 ms | 5048 KB | Time limit exceeded |
49 | Execution timed out | 1556 ms | 5116 KB | Time limit exceeded |
50 | Execution timed out | 1555 ms | 5116 KB | Time limit exceeded |