# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
144978 | 2019-08-18T10:12:21 Z | emilem | Zagrade (COI17_zagrade) | C++14 | 3000 ms | 19548 KB |
#include <algorithm> #include <iostream> #include <string> #include <vector> using namespace std; long long ans; int n; int op, clos; string path; vector< vector<int> > nei; string a; void Chain(const string& a) { vector<int> pref(a.length()); for (int i = 0; i < pref.size(); ++i) { if (a[i] == '(') ++pref[i]; else --pref[i]; if (i) pref[i] += pref[i - 1]; } vector<int> r(n, -1); for (int i = 0; i < n; ++i) { int minElem = pref[i]; for (int j = i; j < n; ++j) { minElem = min(minElem, pref[j]); if (minElem - (i ? pref[i - 1] : 0) < 0) break; else r[i] = j; } } for (int i = 0; i <n; ++i) if (r[i] != -1) for (int j = i; j <= r[i]; ++j) if (pref[j] == (i ? pref[i - 1] : 0)) ++ans; } void Dfs(int v, int par) { if (op == clos && a[v] == ')') return; if (a[v] == ')') ++clos; else ++op; path += a[v]; if (clos == op) ++ans; for (int i = 0; i < nei[v].size(); ++i) { int to = nei[v][i]; if (to == par) continue; Dfs(to, v); } path.pop_back(); if (a[v] == ')') --clos; else --op; } int main() { cin >> n; nei.resize(n); cin >> a; for (int i = 1; i < n; ++i) { int u, v; cin >> u >> v; --u; --v; nei[u].push_back(v); nei[v].push_back(u); } if (false/*n <= 1000*/) { for (int v = 0; v < n; ++v) { op = clos = 0; path = ""; Dfs(v, -1); } cout << ans << endl; return 0; } else // Is a chain. { Chain(a); reverse(a.begin(), a.end()); Chain(a); cout << ans << endl; char I; cin >> I; } char I; cin >> I; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 376 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 983 ms | 19548 KB | Output is correct |
2 | Correct | 400 ms | 19432 KB | Output is correct |
3 | Correct | 2013 ms | 19452 KB | Output is correct |
4 | Correct | 428 ms | 19488 KB | Output is correct |
5 | Execution timed out | 3040 ms | 19476 KB | Time limit exceeded |
6 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 376 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |