結果

問題 No.483 マッチ並べ
ユーザー nebukuro09
提出日時 2017-02-10 23:44:59
言語 D
(dmd 2.109.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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 53
権限があれば一括ダウンロードができます

ソースコード

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