結果
問題 | No.898 tri-βutree |
ユーザー | startcpp |
提出日時 | 2019-10-04 21:55:13 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 865 ms / 4,000 ms |
コード長 | 1,684 bytes |
コンパイル時間 | 758 ms |
コンパイル使用メモリ | 65,280 KB |
実行使用メモリ | 42,368 KB |
最終ジャッジ日時 | 2024-11-08 22:03:58 |
合計ジャッジ時間 | 15,276 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 248 ms
42,368 KB |
testcase_01 | AC | 6 ms
8,448 KB |
testcase_02 | AC | 5 ms
8,320 KB |
testcase_03 | AC | 5 ms
8,448 KB |
testcase_04 | AC | 5 ms
8,448 KB |
testcase_05 | AC | 5 ms
8,192 KB |
testcase_06 | AC | 5 ms
8,448 KB |
testcase_07 | AC | 805 ms
35,968 KB |
testcase_08 | AC | 783 ms
36,012 KB |
testcase_09 | AC | 814 ms
35,968 KB |
testcase_10 | AC | 807 ms
36,004 KB |
testcase_11 | AC | 779 ms
35,968 KB |
testcase_12 | AC | 766 ms
35,864 KB |
testcase_13 | AC | 738 ms
35,996 KB |
testcase_14 | AC | 726 ms
36,096 KB |
testcase_15 | AC | 732 ms
36,004 KB |
testcase_16 | AC | 837 ms
36,000 KB |
testcase_17 | AC | 847 ms
36,000 KB |
testcase_18 | AC | 830 ms
35,968 KB |
testcase_19 | AC | 865 ms
35,968 KB |
testcase_20 | AC | 812 ms
35,968 KB |
testcase_21 | AC | 777 ms
35,968 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:65:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 65 | scanf("%lld%lld%lld", &u, &v, &w); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~ main.cpp:74:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 74 | scanf("%lld%lld%lld", x + i, y + i, z + i); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <cstdio> #define int long long using namespace std; int n; vector<int> et[100000]; vector<int> ec[100000]; int q; int x[100000], y[100000], z[100000]; int parent[100000]; int depth[100000]; int dist[100000]; void dfs(int p, int v, int dep, int dis) { int i; parent[v] = p; depth[v] = dep; dist[v] = dis; for (i = 0; i < et[v].size(); i++) { int nv = et[v][i]; if (nv == p) continue; dfs(v, nv, dep + 1, dis + ec[v][i]); } } int parents[20][100000]; int lca(int u, int v) { if (depth[u] < depth[v]) { swap(u, v); } int i; int diff = depth[u] - depth[v]; for (i = 0; i < 20; i++) { if ((diff >> i) % 2 == 1) { u = parents[i][u]; } } for (i = 19; i >= 0; i--) { if (parents[i][u] != parents[i][v]) { u = parents[i][u]; v = parents[i][v]; } } if (u == v) return u; return parent[u]; } int distance(int u, int v) { return dist[u] + dist[v] - 2 * dist[lca(u, v)]; } signed main() { int i, j; cin >> n; for (i = 0; i < n - 1; i++) { int u, v, w; scanf("%lld%lld%lld", &u, &v, &w); et[u].push_back(v); ec[u].push_back(w); et[v].push_back(u); ec[v].push_back(w); } cin >> q; for (i = 0; i < q; i++) { scanf("%lld%lld%lld", x + i, y + i, z + i); } dfs(0, 0, 0, 0); for (i = 0; i < n; i++) { parents[0][i] = parent[i]; } for (i = 0; i < 19; i++) { for (j = 0; j < n; j++) { parents[i + 1][j] = parents[i][parents[i][j]]; } } for (i = 0; i < q; i++) { int distXY = distance(x[i], y[i]); int distYZ = distance(y[i], z[i]); int distZX = distance(z[i], x[i]); cout << (distXY + distYZ + distZX) / 2 << endl; } return 0; }