結果
問題 | No.2072 Anatomy |
ユーザー | kakel-san |
提出日時 | 2022-09-16 23:07:22 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 401 ms / 2,000 ms |
コード長 | 2,652 bytes |
コンパイル時間 | 2,521 ms |
コンパイル使用メモリ | 112,240 KB |
実行使用メモリ | 83,544 KB |
最終ジャッジ日時 | 2024-06-01 14:00:02 |
合計ジャッジ時間 | 11,645 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
27,400 KB |
testcase_01 | AC | 33 ms
25,136 KB |
testcase_02 | AC | 35 ms
27,336 KB |
testcase_03 | AC | 36 ms
25,168 KB |
testcase_04 | AC | 37 ms
27,528 KB |
testcase_05 | AC | 33 ms
27,532 KB |
testcase_06 | AC | 34 ms
27,528 KB |
testcase_07 | AC | 34 ms
27,468 KB |
testcase_08 | AC | 327 ms
56,128 KB |
testcase_09 | AC | 335 ms
82,404 KB |
testcase_10 | AC | 344 ms
68,060 KB |
testcase_11 | AC | 342 ms
74,472 KB |
testcase_12 | AC | 287 ms
68,304 KB |
testcase_13 | AC | 372 ms
55,280 KB |
testcase_14 | AC | 250 ms
58,196 KB |
testcase_15 | AC | 217 ms
57,388 KB |
testcase_16 | AC | 376 ms
61,276 KB |
testcase_17 | AC | 368 ms
79,752 KB |
testcase_18 | AC | 191 ms
54,572 KB |
testcase_19 | AC | 382 ms
55,660 KB |
testcase_20 | AC | 374 ms
57,444 KB |
testcase_21 | AC | 360 ms
81,496 KB |
testcase_22 | AC | 386 ms
55,788 KB |
testcase_23 | AC | 365 ms
83,544 KB |
testcase_24 | AC | 367 ms
81,500 KB |
testcase_25 | AC | 401 ms
53,464 KB |
testcase_26 | AC | 34 ms
25,296 KB |
testcase_27 | AC | 378 ms
79,304 KB |
testcase_28 | AC | 348 ms
55,644 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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[] NMi => ReadLine().Split().Select(c => int.Parse(c) - 1).ToArray(); static int[][] NMap(int n) => Enumerable.Repeat(0, n).Select(_ => NMi).ToArray(); static void Main() { Solve(); } static void Solve() { var c = NList; var (n, m) = (c[0], c[1]); var map = NMap(m); var tree = new List<int>[m]; for (var i = 0; i < tree.Length; ++i) tree[i] = new List<int>(); var uf = new UnionFindTree(n); var isBridge = new bool[m]; for (var i = m - 1; i >= 0; --i) { var pa = uf.info[uf.GetRoot(map[i][0])]; var pb = uf.info[uf.GetRoot(map[i][1])]; if (pa != int.MaxValue) tree[i].Add(pa); if (pb != int.MaxValue && pb != pa) tree[i].Add(pb); uf.Unite(map[i][0], map[i][1], i); } var dep = new int[m]; DFS(0, tree, dep); WriteLine(dep.Max() + 1); } static void DFS(int cur, List<int>[] tree, int[] dep) { foreach (var next in tree[cur]) { dep[next] = dep[cur] + 1; DFS(next, tree, dep); } } class UnionFindTree { int[] roots; public int[] info; public UnionFindTree(int size) { roots = new int[size]; info = Enumerable.Repeat(int.MaxValue, size).ToArray(); for (var i = 0; i < size; ++i) roots[i] = -1; } public int GetRoot(int a) { if (roots[a] < 0) return a; roots[a] = GetRoot(roots[a]); info[roots[a]] = Math.Min(info[roots[a]], info[a]); return roots[a]; } public bool IsSameTree(int a, int b) { return GetRoot(a) == GetRoot(b); } public bool Unite(int a, int b, int info) { var x = GetRoot(a); var y = GetRoot(b); this.info[x] = Math.Min(this.info[x], info); this.info[y] = Math.Min(this.info[y], info); 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)]; } } }