結果

問題 No.100 直列あみだくじ
ユーザー kimiyukikimiyuki
提出日時 2017-01-05 17:48:44
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,141 bytes
コンパイル時間 764 ms
コンパイル使用メモリ 76,288 KB
実行使用メモリ 13,824 KB
最終ジャッジ日時 2024-12-16 10:08:44
合計ジャッジ時間 116,696 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
#include <functional>
#define repeat(i,n) for (int i = 0; (i) < int(n); ++(i))
using namespace std;
int main() {
    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