結果

問題 No.483 マッチ並べ
ユーザー nebukuro09nebukuro09
提出日時 2017-02-10 23:44:59
言語 D
(dmd 2.105.2)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 2,936 bytes
コンパイル時間 935 ms
コンパイル使用メモリ 107,888 KB
実行使用メモリ 4,388 KB
最終ジャッジ日時 2023-09-03 01:28:15
合計ジャッジ時間 4,131 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,388 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 1 ms
4,384 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 2 ms
4,384 KB
testcase_07 AC 1 ms
4,384 KB
testcase_08 AC 2 ms
4,384 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 2 ms
4,384 KB
testcase_13 AC 2 ms
4,384 KB
testcase_14 AC 2 ms
4,384 KB
testcase_15 AC 2 ms
4,384 KB
testcase_16 AC 1 ms
4,384 KB
testcase_17 AC 1 ms
4,384 KB
testcase_18 AC 2 ms
4,380 KB
testcase_19 AC 2 ms
4,380 KB
testcase_20 AC 2 ms
4,384 KB
testcase_21 AC 2 ms
4,384 KB
testcase_22 AC 2 ms
4,384 KB
testcase_23 AC 1 ms
4,380 KB
testcase_24 AC 2 ms
4,380 KB
testcase_25 AC 2 ms
4,380 KB
testcase_26 AC 2 ms
4,380 KB
testcase_27 AC 2 ms
4,384 KB
testcase_28 AC 2 ms
4,384 KB
testcase_29 AC 1 ms
4,380 KB
testcase_30 AC 2 ms
4,380 KB
testcase_31 AC 2 ms
4,380 KB
testcase_32 AC 2 ms
4,384 KB
testcase_33 AC 2 ms
4,380 KB
testcase_34 AC 2 ms
4,380 KB
testcase_35 AC 1 ms
4,380 KB
testcase_36 AC 1 ms
4,380 KB
testcase_37 AC 2 ms
4,380 KB
testcase_38 AC 2 ms
4,384 KB
testcase_39 AC 2 ms
4,380 KB
testcase_40 AC 2 ms
4,380 KB
testcase_41 AC 1 ms
4,384 KB
testcase_42 AC 2 ms
4,380 KB
testcase_43 AC 3 ms
4,384 KB
testcase_44 AC 2 ms
4,384 KB
testcase_45 AC 2 ms
4,384 KB
testcase_46 AC 2 ms
4,384 KB
testcase_47 AC 1 ms
4,384 KB
testcase_48 AC 2 ms
4,380 KB
testcase_49 AC 2 ms
4,380 KB
testcase_50 AC 2 ms
4,380 KB
testcase_51 AC 2 ms
4,384 KB
testcase_52 AC 2 ms
4,380 KB
testcase_53 AC 1 ms
4,384 KB
testcase_54 AC 2 ms
4,380 KB
testcase_55 AC 2 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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");
}
0