結果
問題 | No.2673 A present from B |
ユーザー | tnakao0123 |
提出日時 | 2024-04-26 11:41:37 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,529 bytes |
コンパイル時間 | 770 ms |
コンパイル使用メモリ | 59,364 KB |
実行使用メモリ | 36,608 KB |
最終ジャッジ日時 | 2024-11-09 02:32:38 |
合計ジャッジ時間 | 2,778 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 7 ms
14,976 KB |
testcase_01 | AC | 8 ms
14,976 KB |
testcase_02 | AC | 11 ms
15,104 KB |
testcase_03 | AC | 7 ms
14,976 KB |
testcase_04 | AC | 7 ms
14,976 KB |
testcase_05 | AC | 7 ms
14,848 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 7 ms
14,976 KB |
testcase_10 | WA | - |
testcase_11 | AC | 8 ms
14,976 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 9 ms
15,232 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 7 ms
15,104 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 7 ms
15,104 KB |
testcase_26 | AC | 7 ms
15,104 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:68:10: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 68 | auto [ud, u] = q.top(); q.pop(); | ^ main.cpp:72:15: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 72 | for (auto [v, w]: nbrs[u]) { | ^
ソースコード
/* -*- coding: utf-8 -*- * * 2673.cc: No.2673 A present from B - yukicoder */ #include<cstdio> #include<vector> #include<queue> #include<algorithm> #include<utility> using namespace std; /* constant */ const int MAX_N = 500; const int MAX_M = 500; const int MAX_GN = MAX_N * (MAX_M * 2 + 1); const int INF = 1 << 30; /* typedef */ typedef pair<int,int> pii; typedef vector<pii> vpii; /* global variables */ int as[MAX_M], ds[MAX_GN];; vpii nbrs[MAX_GN]; /* subroutines */ /* main */ int main() { int n, m; scanf("%d%d", &n, &m); for (int i = 0; i < m; i++) scanf("%d", as + i), as[i]--; int h = 2 * m + 1; for (int i = 0; i < h; i++) { if (! (i & 1)) for (int j = 0; j + 1 < n; j++) { int u = i * n + j, v = u + 1; nbrs[u].push_back({v, 1}); nbrs[v].push_back({u, 1}); } else { int u = i * n + as[i / 2], v = u + 1; nbrs[u].push_back({v, 0}); nbrs[v].push_back({u, 0}); } if (i > 0) for (int j = 0; j < n; j++) { int u = i * n + j, v = u - n; nbrs[u].push_back({v, 0}); } } int gn = h * n, st = (h - 1) * n + 0; fill(ds, ds + gn, INF); ds[st] = 0; priority_queue<pii> q; q.push({0, st}); while (! q.empty()) { auto [ud, u] = q.top(); q.pop(); ud = -ud; if (ds[u] != ud) continue; for (auto [v, w]: nbrs[u]) { int vd = ud + w; if (ds[v] > vd) { ds[v] = vd; q.push({-vd, v}); } } } for (int j = 1; j < n; j++) printf("%d%c", ds[j], (j + 1 < n) ? ' ' : '\n'); return 0; }