結果
問題 | No.1950 片道きゃっちぼーる |
ユーザー | kakel-san |
提出日時 | 2024-02-08 00:04:42 |
言語 | C# (.NET 8.0.203) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,003 bytes |
コンパイル時間 | 9,475 ms |
コンパイル使用メモリ | 167,828 KB |
実行使用メモリ | 260,760 KB |
最終ジャッジ日時 | 2024-09-28 12:40:08 |
合計ジャッジ時間 | 20,028 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 59 ms
31,488 KB |
testcase_01 | AC | 84 ms
31,488 KB |
testcase_02 | AC | 62 ms
31,360 KB |
testcase_03 | AC | 431 ms
100,688 KB |
testcase_04 | AC | 424 ms
101,028 KB |
testcase_05 | AC | 60 ms
31,360 KB |
testcase_06 | AC | 216 ms
74,496 KB |
testcase_07 | AC | 375 ms
150,016 KB |
testcase_08 | AC | 639 ms
122,940 KB |
testcase_09 | WA | - |
testcase_10 | AC | 408 ms
106,368 KB |
testcase_11 | AC | 381 ms
106,496 KB |
testcase_12 | AC | 392 ms
106,368 KB |
testcase_13 | AC | 289 ms
104,704 KB |
testcase_14 | AC | 257 ms
93,056 KB |
testcase_15 | AC | 581 ms
113,264 KB |
testcase_16 | AC | 238 ms
91,008 KB |
testcase_17 | AC | 61 ms
31,104 KB |
testcase_18 | AC | 442 ms
124,160 KB |
testcase_19 | AC | 563 ms
113,636 KB |
testcase_20 | AC | 365 ms
106,240 KB |
testcase_21 | AC | 288 ms
102,528 KB |
testcase_22 | AC | 285 ms
260,760 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (97 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 n = NN; var x = NList; var a = NList; var set = new HashSet<int>(x); for (var i = 0; i < n; ++i) { set.Add(x[i] - a[i]); set.Add(x[i] + a[i]); } var list = new List<int>(set); list.Sort(); var dic = new Dictionary<int, int>(); for (var i = 0; i < list.Count; ++i) dic[list[i]] = i; var tree = new List<int>[list.Count]; for (var i = 0; i < tree.Length; ++i) tree[i] = new List<int>(); var refs = new int[list.Count]; for (var i = 0; i < n; ++i) { tree[dic[x[i] - a[i]]].Add(dic[x[i]]); tree[dic[x[i] + a[i]]].Add(dic[x[i]]); refs[dic[x[i]]] += 2; } var q = new Queue<int>(); for (var i = 0; i < list.Count; ++i) if (refs[i] == 0) q.Enqueue(i); var max = list.ToList(); while (q.Count > 0) { var cur = q.Dequeue(); for (var i = tree[cur].Count - 1; i >= 0; --i) { max[tree[cur][i]] = Math.Max(max[tree[cur][i]], max[cur]); --refs[tree[cur][i]]; if (refs[tree[cur][i]] == 0) q.Enqueue(tree[cur][i]); tree[cur].RemoveAt(i); } } var uf = new UnionFindTree(list.Count); for (var i = 0; i < list.Count; ++i) foreach (var next in tree[i]) uf.Unite(i, next); for (var i = 0; i < list.Count; ++i) max[uf.GetRoot(i)] = Math.Max(max[uf.GetRoot(i)], max[i]); WriteLine(string.Join("\n" , x.Select(xi => max[uf.GetRoot(dic[xi])] - xi))); } 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)]; } } }