結果
問題 | No.363 門松サイクル |
ユーザー | pekempey |
提出日時 | 2016-04-18 15:10:07 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,715 bytes |
コンパイル時間 | 1,564 ms |
コンパイル使用メモリ | 162,792 KB |
実行使用メモリ | 27,904 KB |
最終ジャッジ日時 | 2024-10-04 13:33:03 |
合計ジャッジ時間 | 7,448 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
6,272 KB |
testcase_01 | AC | 3 ms
6,016 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 5 ms
6,016 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 262 ms
26,260 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 4 ms
6,016 KB |
testcase_25 | AC | 4 ms
6,016 KB |
testcase_26 | AC | 135 ms
27,756 KB |
testcase_27 | AC | 134 ms
27,892 KB |
testcase_28 | AC | 197 ms
24,768 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:85:42: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 85 | for (int i = 0; i < n; i++) scanf("%d", &a[i]); | ~~~~~^~~~~~~~~~~~~ main.cpp:89:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 89 | scanf("%d %d", &x, &y); | ~~~~~^~~~~~~~~~~~~~~~~ main.cpp:102:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 102 | scanf("%d %d", &u, &v); | ~~~~~^~~~~~~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h> using namespace std; bool isKadomatsu(long long x, long long y, long long z) { if (x == y || y == z || x == z) return false; if (x > y && y < z) return true; if (x < y && y > z) return true; return false; } int n; int a[101010]; vector<int> g[101010]; int parent[24][101010]; int depth[101010]; bool kado[24][101010]; void dfs(int curr, int prev) { parent[0][curr] = prev; kado[0][curr] = true; if (prev != -1 && parent[0][prev] != -1) { int p = prev; int pp = parent[0][prev]; kado[0][curr] = isKadomatsu(a[curr], a[p], a[pp]); } for (int next : g[curr]) if (next != prev) { depth[next] = depth[curr] + 1; dfs(next, curr); } } void build() { dfs(0, -1); for (int i = 0; i < 23; i++) { for (int j = 0; j < n; j++) { if (parent[i][j] != -1) { parent[i + 1][j] = parent[i][parent[i][j]]; kado[i + 1][j] = kado[i][j] && kado[i][parent[i][j]]; } else { parent[i + 1][j] = -1; kado[i + 1][j] = kado[i][j]; } } } } int ancestor(int u, int k) { for (int i = 0; i < 24; i++) if (k & 1 << i) u = parent[i][u]; return u; } int lca(int u, int v) { if (depth[u] < depth[v]) swap(u, v); for (int i = 23; i >= 0; i--) { if (depth[u] - depth[v] >= 1 << i) { u = parent[i][u]; } } if (u == v) return u; for (int i = 23; i >= 0; i--) { if (parent[i][u] != parent[i][v]) { u = parent[i][u]; v = parent[i][v]; } } return parent[0][u]; } int query(int u, int d) { if (d < 0) return true; bool result = true; for (int i = 0; i < 24; i++) if (d & 1 << i) { result &= kado[i][u]; u = parent[i][u]; } return result; } int main() { cin >> n; for (int i = 0; i < n; i++) scanf("%d", &a[i]); for (int i = 0; i < n - 1; i++) { int x, y; scanf("%d %d", &x, &y); x--; y--; g[x].push_back(y); g[y].push_back(x); } build(); int q; cin >> q; for (int i = 0; i < q; i++) { int u, v; scanf("%d %d", &u, &v); u--; v--; int l = lca(u, v); bool ans = true; if (u != v) { ans &= parent[0][u] != v && parent[0][v] != u; if (l != u && l != v) { int p = ancestor(u, depth[u] - depth[l] - 1); int q = ancestor(v, depth[v] - depth[l] - 1); ans &= isKadomatsu(a[p], a[l], a[q]); ans &= isKadomatsu(a[parent[0][u]], a[u], a[v]); ans &= isKadomatsu(a[parent[0][v]], a[v], a[u]); ans &= query(u, depth[u] - depth[p] - 1); ans &= query(v, depth[v] - depth[q] - 1); } else { if (l == v) swap(u, v); int q = ancestor(v, depth[v] - depth[l] - 1); ans &= query(v, depth[v] - depth[q] - 1); ans &= isKadomatsu(a[q], a[u], a[v]); ans &= isKadomatsu(a[parent[0][v]], a[v], a[u]); } } else ans = false; printf("%s\n", ans ? "YES" : "NO"); } }