結果

問題 No.101 ぐるぐる!あみだくじ!
ユーザー koyoprokoyopro
提出日時 2015-10-01 23:44:00
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 581 bytes
コンパイル時間 1,653 ms
コンパイル使用メモリ 161,140 KB
実行使用メモリ 10,144 KB
最終ジャッジ日時 2024-07-19 19:01:10
合計ジャッジ時間 19,073 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,120 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 576 ms
5,376 KB
testcase_12 AC 998 ms
5,376 KB
testcase_13 AC 1,296 ms
5,376 KB
testcase_14 AC 905 ms
5,376 KB
testcase_15 AC 90 ms
5,376 KB
testcase_16 AC 126 ms
5,376 KB
testcase_17 AC 127 ms
5,376 KB
testcase_18 AC 109 ms
5,376 KB
testcase_19 AC 165 ms
5,376 KB
testcase_20 AC 7 ms
5,376 KB
testcase_21 AC 8 ms
5,376 KB
testcase_22 AC 212 ms
5,376 KB
testcase_23 AC 193 ms
5,376 KB
testcase_24 AC 1,664 ms
5,376 KB
testcase_25 AC 2,248 ms
5,376 KB
testcase_26 AC 1,735 ms
5,376 KB
testcase_27 TLE -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;

#define REP(i, n) for(int i=0; i<(n); i++)

int N,K;
bool isok(vector<int> a) {
    REP(i,a.size()) {
        if (a[i] != i) return false;
    }
    return true;
}
signed main()
{
    cin >> N>>K;
    vector<int> amida(N);
    REP(i,N) amida[i] = i;
    vector<int> x(K);
    int y;
    REP(i,K) {
        cin >> x[i] >> y;
    }
    int cnt = 0;
    while(true) {
        cnt++;
        REP(i,K) {
            swap(amida[x[i]-1], amida[x[i]]);
        }
        if (isok(amida)) break;
    }
    cout << cnt << endl;
    return 0;
}
0