結果

問題 No.482 あなたの名は
ユーザー rpy3cpprpy3cpp
提出日時 2017-03-26 01:17:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 185 ms / 2,000 ms
コード長 624 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 34,120 KB
最終ジャッジ日時 2024-07-06 06:17:44
合計ジャッジ時間 4,574 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,496 KB
testcase_01 AC 31 ms
10,368 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 31 ms
10,496 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 31 ms
10,496 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 31 ms
10,496 KB
testcase_12 AC 31 ms
10,624 KB
testcase_13 AC 31 ms
10,496 KB
testcase_14 AC 31 ms
10,624 KB
testcase_15 AC 185 ms
33,832 KB
testcase_16 AC 179 ms
33,988 KB
testcase_17 AC 179 ms
34,100 KB
testcase_18 AC 182 ms
33,848 KB
testcase_19 AC 178 ms
34,072 KB
testcase_20 AC 183 ms
33,848 KB
testcase_21 AC 178 ms
34,120 KB
testcase_22 AC 179 ms
34,104 KB
testcase_23 AC 178 ms
34,088 KB
testcase_24 AC 183 ms
33,848 KB
testcase_25 AC 183 ms
33,972 KB
testcase_26 AC 181 ms
33,844 KB
testcase_27 AC 180 ms
33,848 KB
testcase_28 AC 181 ms
33,836 KB
testcase_29 AC 144 ms
33,844 KB
testcase_30 AC 31 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def read_data():
    N, K = map(int, input().split())
    Ds = list(map(int, input().split()))
    return N, K, Ds

def solve(N, K, Ds):
    group = list(range(N))
    Ds = [d - 1 for d in Ds]
    n_groups = 0
    for v in range(N):
        if group[v] != v:
            continue
        n_groups += 1
        u = v
        while Ds[u] != v:
            u = Ds[u]
            group[u] = v
    min_steps = N - n_groups
    if K < min_steps:
        return False
    elif (K - min_steps) % 2:
        return False
    else:
        return True

N, K, Ds = read_data()
if solve(N, K, Ds):
    print('YES')
else:
    print('NO')
0