結果
問題 | No.483 マッチ並べ |
ユーザー | nebukuro09 |
提出日時 | 2017-02-10 23:44:59 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 2,936 bytes |
コンパイル時間 | 1,104 ms |
コンパイル使用メモリ | 124,516 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-12 07:01:03 |
合計ジャッジ時間 | 2,330 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 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,944 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 1 ms
6,944 KB |
testcase_13 | AC | 1 ms
6,944 KB |
testcase_14 | AC | 1 ms
6,940 KB |
testcase_15 | AC | 1 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | AC | 1 ms
6,940 KB |
testcase_18 | AC | 1 ms
6,940 KB |
testcase_19 | AC | 1 ms
6,944 KB |
testcase_20 | AC | 1 ms
6,944 KB |
testcase_21 | AC | 1 ms
6,940 KB |
testcase_22 | AC | 2 ms
6,940 KB |
testcase_23 | AC | 1 ms
6,940 KB |
testcase_24 | AC | 1 ms
6,940 KB |
testcase_25 | AC | 1 ms
6,944 KB |
testcase_26 | AC | 2 ms
6,940 KB |
testcase_27 | AC | 2 ms
6,944 KB |
testcase_28 | AC | 1 ms
6,944 KB |
testcase_29 | AC | 1 ms
6,940 KB |
testcase_30 | AC | 1 ms
6,940 KB |
testcase_31 | AC | 1 ms
6,940 KB |
testcase_32 | AC | 1 ms
6,940 KB |
testcase_33 | AC | 1 ms
6,940 KB |
testcase_34 | AC | 2 ms
6,940 KB |
testcase_35 | AC | 1 ms
6,944 KB |
testcase_36 | AC | 1 ms
6,940 KB |
testcase_37 | AC | 2 ms
6,940 KB |
testcase_38 | AC | 2 ms
6,940 KB |
testcase_39 | AC | 2 ms
6,940 KB |
testcase_40 | AC | 1 ms
6,940 KB |
testcase_41 | AC | 1 ms
6,944 KB |
testcase_42 | AC | 1 ms
6,940 KB |
testcase_43 | AC | 2 ms
6,944 KB |
testcase_44 | AC | 1 ms
6,940 KB |
testcase_45 | AC | 1 ms
6,940 KB |
testcase_46 | AC | 1 ms
6,940 KB |
testcase_47 | AC | 1 ms
6,940 KB |
testcase_48 | AC | 1 ms
6,940 KB |
testcase_49 | AC | 1 ms
6,940 KB |
testcase_50 | AC | 1 ms
6,940 KB |
testcase_51 | AC | 2 ms
6,940 KB |
testcase_52 | AC | 2 ms
6,944 KB |
testcase_53 | AC | 2 ms
6,944 KB |
testcase_54 | AC | 1 ms
6,944 KB |
testcase_55 | AC | 1 ms
6,944 KB |
ソースコード
import std.stdio, std.array, std.string, std.conv, std.algorithm; import std.typecons, std.range, std.random, std.math, std.container; import std.numeric, std.bigint, core.bitop, core.stdc.stdio, std.bitmanip; immutable int MAX = 120; alias Tuple!(int, "a", int, "b", int, "c", int, "d") Match; int N; Match[] M; int[][][] B; bool[] used; int[][] adj; bool[][] P; bool dfs(int x) { used[x] = true; auto m = M[x]; if (m.a == m.c) { if (!P[m.a][m.b]) { P[m.a][m.b] = true; bool ret = true; foreach (y; adj[x]) { if (used[y]) continue; if (!dfs(y)) { ret = false; break; } } if (ret) return true; P[m.a][m.b] = false; } if (!P[m.a][m.d]) { P[m.a][m.d] = true; bool ret = true; foreach (y; adj[x]) { if (used[y]) continue; if (!dfs(y)) { ret = false; break; } } if (ret) return true; P[m.a][m.d] = false; } } else { if (!P[m.a][m.b]) { P[m.a][m.b] = true; bool ret = true; foreach (y; adj[x]) { if (used[y]) continue; if (!dfs(y)) { ret = false; break; } } if (ret) return true; P[m.a][m.b] = false; } if (!P[m.c][m.b]) { P[m.c][m.b] = true; bool ret = true; foreach (y; adj[x]) { if (used[y]) continue; if (!dfs(y)) { ret = false; break; } } if (ret) return true; P[m.c][m.b] = false; } } used[x] = false; return false; } void main() { N = readln.chomp.to!int; M = new Match[](N); B = new int[][][](MAX, MAX); foreach (i; 0..N) { auto s = readln.split.map!(to!int).array; M[i] = Match(s[0], s[1], s[2], s[3]); if (s[0] == s[2]) { B[s[0]][s[1]] ~= i; B[s[0]][s[3]] ~= i; } else { B[s[0]][s[1]] ~= i; B[s[2]][s[1]] ~= i; } } adj = new int[][](N); foreach (i; 0..MAX) { foreach (j; 0..MAX) { auto x = B[i][j].length; foreach (a; B[i][j]) { foreach (b; B[i][j]) { if (a != b) { adj[a] ~= b; } } } } } used = new bool[](N); foreach (i; 0..N) { if (used[i]) continue; P = new bool[][](MAX, MAX); if (!dfs(i)) { writeln("NO"); return; } } writeln("YES"); }