結果
問題 | No.1420 国勢調査 (Easy) |
ユーザー | kakel-san |
提出日時 | 2024-07-14 23:32:43 |
言語 | C# (.NET 8.0.203) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,593 bytes |
コンパイル時間 | 17,675 ms |
コンパイル使用メモリ | 168,592 KB |
実行使用メモリ | 214,744 KB |
最終ジャッジ日時 | 2024-07-14 23:33:18 |
合計ジャッジ時間 | 18,886 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 58 ms
30,956 KB |
testcase_01 | AC | 54 ms
30,324 KB |
testcase_02 | AC | 170 ms
59,284 KB |
testcase_03 | AC | 163 ms
59,408 KB |
testcase_04 | AC | 159 ms
59,288 KB |
testcase_05 | AC | 160 ms
59,292 KB |
testcase_06 | AC | 165 ms
59,544 KB |
testcase_07 | AC | 151 ms
58,512 KB |
testcase_08 | AC | 173 ms
58,780 KB |
testcase_09 | AC | 153 ms
58,516 KB |
testcase_10 | AC | 153 ms
58,652 KB |
testcase_11 | AC | 151 ms
58,012 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 182 ms
60,468 KB |
testcase_28 | AC | 199 ms
60,332 KB |
testcase_29 | AC | 209 ms
60,468 KB |
testcase_30 | AC | 184 ms
60,464 KB |
testcase_31 | AC | 186 ms
214,744 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (86 ms)。 MSBuild のバージョン 17.9.6+a4ecab324 (.NET) main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
using System; using static System.Console; using System.Linq; using System.Collections.Generic; class Program { static int NN => int.Parse(ReadLine()); static int[] NList => ReadLine().Split().Select(int.Parse).ToArray(); static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray(); static int[] LList(long n) => Enumerable.Repeat(0, (int)n).Select(_ => int.Parse(ReadLine())).ToArray(); public static void Main() { Solve(); } static void Solve() { var c = NList; var (n, m) = (c[0], c[1]); var tree = new List<(int to, int x)>[n]; for (var i = 0; i < n; ++i) tree[i] = new List<(int to, int x)>(); for (var i = 0; i < m; ++i) { c = NList; var y = NN; tree[c[0] - 1].Add((c[1] - 1, y)); tree[c[1] - 1].Add((c[0] - 1, y)); } var ans = Enumerable.Repeat(-1, n).ToArray(); ans[0] = 0; if (DFS(0, -1, tree, ans)) WriteLine(string.Join("\n", ans)); else WriteLine(-1); } static bool DFS(int cur, int prev, List<(int to, int x)>[] tree, int[] ans) { foreach (var next in tree[cur]) { if (prev == next.to) continue; if (ans[next.to] < 0) { ans[next.to] = ans[cur] ^ next.x; if (!DFS(next.to, cur, tree, ans)) return false; } else if (ans[next.to] != (ans[cur] ^ next.x)) return false; } return true; } }