結果
問題 | No.2673 A present from B |
ユーザー | tnakao0123 |
提出日時 | 2024-04-26 12:10:59 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 87 ms / 2,000 ms |
コード長 | 1,612 bytes |
コンパイル時間 | 849 ms |
コンパイル使用メモリ | 62,032 KB |
実行使用メモリ | 36,472 KB |
最終ジャッジ日時 | 2024-11-13 23:16:30 |
合計ジャッジ時間 | 2,354 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 6 ms
15,132 KB |
testcase_01 | AC | 7 ms
15,324 KB |
testcase_02 | AC | 7 ms
15,076 KB |
testcase_03 | AC | 6 ms
15,304 KB |
testcase_04 | AC | 6 ms
15,000 KB |
testcase_05 | AC | 7 ms
15,092 KB |
testcase_06 | AC | 87 ms
36,352 KB |
testcase_07 | AC | 85 ms
36,472 KB |
testcase_08 | AC | 83 ms
36,388 KB |
testcase_09 | AC | 6 ms
15,284 KB |
testcase_10 | AC | 6 ms
15,204 KB |
testcase_11 | AC | 5 ms
15,616 KB |
testcase_12 | AC | 27 ms
21,008 KB |
testcase_13 | AC | 28 ms
21,880 KB |
testcase_14 | AC | 41 ms
24,960 KB |
testcase_15 | AC | 17 ms
18,580 KB |
testcase_16 | AC | 17 ms
19,188 KB |
testcase_17 | AC | 13 ms
16,988 KB |
testcase_18 | AC | 19 ms
19,048 KB |
testcase_19 | AC | 7 ms
15,668 KB |
testcase_20 | AC | 36 ms
23,136 KB |
testcase_21 | AC | 66 ms
31,472 KB |
testcase_22 | AC | 6 ms
16,000 KB |
testcase_23 | AC | 6 ms
14,940 KB |
testcase_24 | AC | 6 ms
15,656 KB |
testcase_25 | AC | 6 ms
15,328 KB |
testcase_26 | AC | 6 ms
15,084 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:74:15: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 74 | 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_H = MAX_M * 2 + 1; const int MAX_GN = MAX_H * MAX_N; const int INF = 1 << 30; /* typedef */ typedef pair<int,int> pii; typedef vector<pii> vpii; typedef queue<int> qi; /* 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}); } if (i > 0) for (int j = 0; j < n; j++) { int u = i * n + j, v = u - n; if ((i & 1) && as[i / 2] == j) nbrs[u].push_back({v + 1, 0}); else if ((i & 1) && as[i / 2] == j - 1) nbrs[u].push_back({v - 1, 0}); else nbrs[u].push_back({v, 0}); } } int gn = h * n, st = (h - 1) * n + 0; fill(ds, ds + gn, INF); ds[st] = 0; qi q0, q1; q0.push(st); while (! q0.empty() || ! q1.empty()) { if (q0.empty()) swap(q0, q1); int u = q0.front(); q0.pop(); for (auto [v, w]: nbrs[u]) { int vd = ds[u] + w; if (ds[v] > vd) { ds[v] = vd; if (w == 0) q0.push(v); else q1.push(v); } } } for (int j = 1; j < n; j++) printf("%d%c", ds[j], (j + 1 < n) ? ' ' : '\n'); return 0; }