結果
問題 | No.1502 Many Simple Additions |
ユーザー | kakel-san |
提出日時 | 2024-06-21 23:25:07 |
言語 | C# (.NET 8.0.203) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,193 bytes |
コンパイル時間 | 8,953 ms |
コンパイル使用メモリ | 167,856 KB |
実行使用メモリ | 186,740 KB |
最終ジャッジ日時 | 2024-06-21 23:25:25 |
合計ジャッジ時間 | 16,913 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 64 ms
30,336 KB |
testcase_01 | AC | 61 ms
30,464 KB |
testcase_02 | AC | 60 ms
30,452 KB |
testcase_03 | AC | 62 ms
30,336 KB |
testcase_04 | AC | 62 ms
30,460 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 62 ms
30,464 KB |
testcase_13 | AC | 61 ms
30,464 KB |
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 | AC | 67 ms
30,448 KB |
testcase_26 | AC | 61 ms
30,336 KB |
testcase_27 | AC | 199 ms
60,740 KB |
testcase_28 | AC | 195 ms
61,008 KB |
testcase_29 | AC | 74 ms
35,840 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | AC | 193 ms
59,388 KB |
testcase_37 | WA | - |
testcase_38 | AC | 194 ms
60,160 KB |
testcase_39 | AC | 139 ms
55,040 KB |
testcase_40 | AC | 100 ms
40,832 KB |
testcase_41 | AC | 71 ms
33,408 KB |
testcase_42 | AC | 246 ms
62,700 KB |
testcase_43 | AC | 61 ms
186,740 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (95 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(); public static void Main() { Solve(); } static void Solve() { var c = NList; var (n, m, k) = (c[0], c[1], c[2]); var map = NArr(m); var tree = new List<(int to, int z)>[n]; for (var i = 0; i < tree.Length; ++i) tree[i] = new List<(int to, int z)>(); var uf = new UnionFindTree(n); foreach (var edge in map) { uf.Unite(edge[0] - 1, edge[1] - 1); tree[edge[0] - 1].Add((edge[1] - 1, edge[2])); tree[edge[1] - 1].Add((edge[0] - 1, edge[2])); } var mod = 1_000_000_007; var ans1 = 1L; var ans2 = 1L; var visited1 = new bool[n]; var visited2 = new bool[n]; for (var i = 0; i < n; ++i) if (uf.GetRoot(i) == i) { var min = 1L; var max = (long)k; DFS(i, k, 0, true, tree, visited1, ref min, ref max); ans1 = ans1 * Math.Max(0, max - min + 1) % mod; min = 1L; max = k - 1; DFS(i, k - 1, 0, true, tree, visited2, ref min, ref max); ans2 = ans2 * Math.Max(0, max - min + 1) % mod; } WriteLine((ans1 - ans2 + mod) % mod); } static void DFS(int cur, int k, long sum, bool minus, List<(int to, int z)>[] tree, bool[] visited, ref long min, ref long max) { visited[cur] = true; foreach (var next in tree[cur]) { if (visited[next.to]) continue; if (minus) { max = Math.Min(max, next.z - sum - 1); min = Math.Max(min, next.z - sum - k); } else { min = Math.Max(min, 1 - next.z + sum); max = Math.Min(max, k - next.z + sum); } DFS(next.to, k, next.z - sum, !minus, tree, visited, ref min, ref max); } } class UnionFindTree { int[] roots; public UnionFindTree(int size) { roots = new int[size]; for (var i = 0; i < size; ++i) roots[i] = -1; } public int GetRoot(int a) { if (roots[a] < 0) return a; return roots[a] = GetRoot(roots[a]); } public bool IsSameTree(int a, int b) { return GetRoot(a) == GetRoot(b); } public bool Unite(int a, int b) { var x = GetRoot(a); var y = GetRoot(b); if (x == y) return false; if (-roots[x] < -roots[y]) { var tmp = x; x = y; y = tmp; } roots[x] += roots[y]; roots[y] = x; return true; } public int GetSize(int a) { return -roots[GetRoot(a)]; } } }