結果
問題 | No.2202 贅沢てりたまチキン |
ユーザー | lanegue |
提出日時 | 2023-02-03 22:48:20 |
言語 | D (dmd 2.106.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,563 bytes |
コンパイル時間 | 831 ms |
コンパイル使用メモリ | 101,372 KB |
実行使用メモリ | 49,352 KB |
最終ジャッジ日時 | 2024-06-22 17:25:17 |
合計ジャッジ時間 | 6,107 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
12,188 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,944 KB |
testcase_10 | AC | 3 ms
9,732 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 1 ms
6,940 KB |
testcase_13 | AC | 1 ms
6,944 KB |
testcase_14 | AC | 259 ms
30,068 KB |
testcase_15 | AC | 246 ms
28,672 KB |
testcase_16 | AC | 254 ms
30,976 KB |
testcase_17 | AC | 255 ms
30,892 KB |
testcase_18 | AC | 121 ms
15,232 KB |
testcase_19 | AC | 137 ms
22,400 KB |
testcase_20 | TLE | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
ソースコード
import std.stdio; import std.string; import std.conv; import std.typecons; import std.container.dlist; class DisjointSet{ int[] parent; this(int size){ parent = new int[size]; parent[] = -1; } void unite(int x, int y){ x = root(x); y = root(y); if(x == y) return; if(parent[x] > parent[y]){ auto t = x; x = y; y = t; } parent[x] += parent[y]; parent[y] = x; } bool same(int x, int y){ return root(x) == root(y); } int root(int x){ if(parent[x] < 0) return x; parent[x] = root(parent[x]); return parent[x]; } int size(int x){ return -parent[root(x)]; } } int N; int M; int[][] E; void main(){ auto s = readln.chomp.split; N = s[0].to!int; M = s[1].to!int; E = new int[][](N * 2); auto ds = new DisjointSet(N); for(auto m = 0; m < M; m++){ s = readln.chomp.split; auto a = s[0].to!int - 1; auto b = s[1].to!int - 1; E[a] ~= b + N; E[a + N] ~= b; E[b] ~= a + N; E[b + N] ~= a; ds.unite(a, b); } auto result = true; bool[int] results; for(auto n = 0; n < N; n++){ if(ds.root(n) in results) continue; auto r = dfs(n); if(!r){ result = false; break; } results[ds.root(n)] = true; } writeln(result ? "Yes" : "No"); } bool dfs(int n){ auto q = DList!(int)(n); auto used = new bool[N * 2]; while(!q.empty){ auto t = q.front; q.removeFront; if(t == n + N) return true; if(used[t]) continue; used[t] = true; foreach(c; E[t]){ if(used[c]) continue; q.insertBack(c); } } return false; }