結果
問題 | No.1024 Children in a Row |
ユーザー | betrue12 |
提出日時 | 2020-04-10 23:13:54 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,761 bytes |
コンパイル時間 | 2,383 ms |
コンパイル使用メモリ | 206,620 KB |
実行使用メモリ | 45,136 KB |
最終ジャッジ日時 | 2024-09-16 00:11:04 |
合計ジャッジ時間 | 17,559 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 9 ms
12,672 KB |
testcase_01 | AC | 10 ms
12,672 KB |
testcase_02 | AC | 10 ms
12,800 KB |
testcase_03 | WA | - |
testcase_04 | AC | 10 ms
12,800 KB |
testcase_05 | WA | - |
testcase_06 | AC | 10 ms
12,800 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 559 ms
31,424 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 573 ms
30,436 KB |
testcase_14 | AC | 550 ms
29,916 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 615 ms
36,328 KB |
testcase_21 | WA | - |
testcase_22 | AC | 593 ms
36,352 KB |
testcase_23 | AC | 562 ms
37,768 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 546 ms
45,136 KB |
testcase_29 | AC | 496 ms
43,864 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int N, M; cin >> N >> M; static vector<int> edges[400000]; vector<int> V(N+M); vector<int> active(N), bef(N+M); vector<int> K(N+M); for(int i=0; i<N; i++){ V[i] = i; active[i] = i; if(i) edges[i-1].push_back(i); } for(int i=N; i<N+M; i++){ int a, b, k; cin >> a >> b >> k; a--; b--; k--; K[i] = k; edges[active[b]].push_back(i); V[i] = a; bef[i] = active[a]; active[a] = i; } for(int i=0; i<N+M; i++) reverse(edges[i].begin(), edges[i].end()); vector<int> order; vector<int> subnum(N+M), pos(N+M); auto dfs = [&](auto&& dfs, int i)->int{ int res = 0; pos[i] = order.size(); if(active[V[i]] == i){ order.push_back(V[i]); res++; } for(int j : edges[i]) res += dfs(dfs, j); subnum[i] = res; return res; }; dfs(dfs, 0); for(int i=N; i<N+M; i++){ int posbef = pos[bef[i]]; int posaft = pos[i]; int num = subnum[i]; int ans = 0; if(K[i] < min(posbef, posaft) || K[i] >= max(posbef, posaft)+num){ ans = order[K[i]]; }else if(posbef <= posaft){ int R = K[i] - posbef; if(R < num){ ans = order[posaft+R]; }else{ ans = order[K[i]-num]; } }else{ int R = K[i] - posaft; int mid = posbef-posaft-num; if(R < mid){ ans = order[K[i]+num]; }else{ ans = order[posaft+R-mid]; } } cout << ans+1 << endl; } return 0; }