# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
144982 | 2019-08-18T10:17:45 Z | emilem | Zagrade (COI17_zagrade) | C++14 | 3000 ms | 20736 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< pair<int, int> > pref(a.length()); for (int i = 0; i < pref.size(); ++i) { if (a[i] == '(') ++pref[i].first; else --pref[i].first; if (i) pref[i].first += pref[i - 1].first; } vector<int> r(n, -1); for (int i = 0; i < n; ++i) { int minElem = pref[i].first; for (int j = i; j < n; ++j) { minElem = min(minElem, pref[j].first); if (minElem - (i ? pref[i - 1].first : 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].first == (i ? pref[i - 1].first : 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
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 4 ms | 504 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 986 ms | 20736 KB | Output is correct |
2 | Correct | 403 ms | 20692 KB | Output is correct |
3 | Correct | 1987 ms | 20688 KB | Output is correct |
4 | Correct | 408 ms | 20724 KB | Output is correct |
5 | Execution timed out | 3011 ms | 20732 KB | Time limit exceeded |
6 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 4 ms | 504 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |