結果

問題 No.482 あなたの名は
ユーザー compass19compass19
提出日時 2017-02-15 00:46:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 473 bytes
コンパイル時間 458 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 39,052 KB
最終ジャッジ日時 2024-06-09 12:16:31
合計ジャッジ時間 5,608 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 28 ms
10,624 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 AC 28 ms
10,752 KB
testcase_12 AC 31 ms
10,880 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 240 ms
38,796 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 239 ms
37,880 KB
testcase_20 WA -
testcase_21 AC 232 ms
37,880 KB
testcase_22 WA -
testcase_23 AC 242 ms
37,800 KB
testcase_24 WA -
testcase_25 AC 225 ms
38,016 KB
testcase_26 WA -
testcase_27 AC 231 ms
37,992 KB
testcase_28 WA -
testcase_29 AC 230 ms
37,884 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
D = ['dummy'] + list(map(int, input().split()))

# 巡回置換の検出
peo = {i: False for i in D[1:]}
ans = 0
for ix, i in enumerate(D):
    if ix == 0 or peo[i] or i == ix:
        peo[i] = True
        continue 
    key = i
    peo[i] = True
    ans += 1
    _next = D[i]
    while _next != key:
        peo[_next] = True
        ans += 1
        _next = D[_next]


if K >= ans and K%2 == ans%2:
    print('YES')
else:
    print('NO')
0