# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
144966 | 2019-08-18T09:59:23 Z | emilem | Zagrade (COI17_zagrade) | C++14 | 3000 ms | 18320 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; long long 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]; } for (int i = 0; i < n; ++i) { int r = -1; for (int j = i; j < n; ++j) if (*min_element(pref.begin() + i, pref.begin() + j + 1) - (i ? pref[i - 1] : 0) < 0) break; else r = j; if (r != -1) for (int j = i; j <= r; ++j) if (pref[j] == (i ? pref[i - 1] : 0)) ++ans; } return 0; } 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. { ans += Chain(a); reverse(a.begin(), a.end()); ans += Chain(a); cout << ans << endl; char I; cin >> I; } char I; cin >> I; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 88 ms | 504 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 3096 ms | 18320 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 88 ms | 504 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |