結果

問題 No.100 直列あみだくじ
ユーザー kimiyukikimiyuki
提出日時 2017-01-05 18:01:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,463 bytes
コンパイル時間 840 ms
コンパイル使用メモリ 77,312 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-09 18:41:05
合計ジャッジ時間 93,562 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4,873 ms
5,248 KB
testcase_01 AC 4,820 ms
5,248 KB
testcase_02 AC 64 ms
5,376 KB
testcase_03 AC 4,819 ms
5,376 KB
testcase_04 AC 4,823 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 4,820 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 4,821 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 4,817 ms
5,376 KB
testcase_36 WA -
testcase_37 AC 4,816 ms
5,376 KB
testcase_38 WA -
testcase_39 AC 4,817 ms
5,376 KB
testcase_40 WA -
testcase_41 AC 4,817 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 WA -
testcase_44 AC 4,819 ms
5,376 KB
testcase_45 AC 4,827 ms
5,376 KB
testcase_46 AC 4,821 ms
5,376 KB
testcase_47 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <functional>
#include <sys/signal.h>
#include <sys/time.h>
#define repeat(i,n) for (int i = 0; (i) < int(n); ++(i))
using namespace std;
void handler(int) {
    cout << "No" << endl;
    exit(EXIT_SUCCESS);
}
int main() {
    // timer
    signal(SIGPROF, handler);
    itimerval tv;
    tv.it_value.tv_sec = 4;
    tv.it_value.tv_usec = 800 * 1000;
    tv.it_interval = {};
    setitimer(ITIMER_PROF, &tv, NULL);
    // solve
    int n; cin >> n;
    vector<int> f(n); repeat (i,n) { cin >> f[i]; -- f[i]; }
    vector<int> g(n, -1);
    vector<bool> used(n);
    function<bool (int)> go = [&](int i) {
        if (i == n) return true;
        if (g[i] == -1) {
            repeat (j,n) if (not used[j]) {
                used[j] = true;
                g[i] = j;
                if (go(i)) return true;
                g[i] = -1;
                used[j] = false;
            }
        } else {
            if (g[g[i]] == -1) {
                if (not used[f[i]]) {
                    used[f[i]] = true;
                    g[g[i]] = f[i];
                    if (go(i+1)) return true;
                    g[g[i]] = -1;
                    used[f[i]] = false;
                }
            } else {
                if (g[g[i]] == f[i]) {
                    if (go(i+1)) return true;
                }
            }
        }
        return false;
    };
    cout << (go(0) ? "Yes" : "No") << endl;
    return 0;
}
0