結果
問題 | No.2565 はじめてのおつかい |
ユーザー | k82b |
提出日時 | 2023-12-02 15:58:39 |
言語 | D (dmd 2.106.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,318 bytes |
コンパイル時間 | 3,521 ms |
コンパイル使用メモリ | 172,800 KB |
実行使用メモリ | 13,312 KB |
最終ジャッジ日時 | 2024-09-26 19:37:44 |
合計ジャッジ時間 | 9,542 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 136 ms
13,312 KB |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 39 ms
6,656 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 95 ms
13,184 KB |
testcase_17 | WA | - |
testcase_18 | AC | 28 ms
5,504 KB |
testcase_19 | AC | 113 ms
12,416 KB |
testcase_20 | AC | 100 ms
12,288 KB |
testcase_21 | WA | - |
testcase_22 | AC | 57 ms
9,344 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 102 ms
12,288 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | AC | 121 ms
13,056 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | AC | 2 ms
5,376 KB |
testcase_52 | AC | 86 ms
11,776 KB |
ソースコード
import std, core.bitop; string[] _R; void readM(T)(ref T x) { while (_R.empty) { _R = readln.chomp.split; } x = _R.front.to!T; _R.popFront; } bool chmin(T)(ref T A, T B) { if (A > B) { A = B; return true; } else { return false; } } bool chmax(T)(ref T A, T B) { if (A < B) { A = B; return true; } else { return false; } } int lowerBound(T)(T[] A, T x) { int lo = -1, hi = cast(int)(A.length); while (hi - lo > 1) { int mid = lo + hi >> 1; (A[mid] < x ? lo : hi) = mid; } return hi; } int upperBound(T)(T[] A, T x) { int lo = -1, hi = cast(int)(A.length); while (hi - lo > 1) { int mid = lo + hi >> 1; (A[mid] > x ? hi : lo) = mid; } return hi; } enum INF = 10 ^^ 8; int N, M; int[][] G; int[] BFS(int s) { auto dist = new int[N]; dist[] = INF; dist[s] = 0; int[] que; que ~= s; while (!que.empty) { int u = que.front; que.popFront; if (!u) { continue; } foreach (v; G[u]) { if (chmin(dist[v], dist[u] + 1)) { que ~= v; } } } return dist; } void main() { N.readM; M.readM; G = new int[][](N, 0); foreach (i; 0 .. M) { int u, v; u.readM; v.readM; --u, --v; G[u] ~= v; G[v] ~= u; } auto A = BFS(N - 2); auto B = BFS(N - 1); int ans = INF; chmin(ans, A[0] + A[N - 1] + B[0]); chmin(ans, B[0] + B[N - 2] + A[0]); if (ans == INF) { ans = -1; } writeln(ans); }