結果

問題 No.482 あなたの名は
ユーザー te-shte-sh
提出日時 2017-12-11 16:28:58
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 33 ms / 2,000 ms
コード長 455 bytes
コンパイル時間 626 ms
コンパイル使用メモリ 102,380 KB
実行使用メモリ 13,168 KB
最終ジャッジ日時 2024-06-12 22:59:57
合計ジャッジ時間 2,242 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 32 ms
11,976 KB
testcase_16 AC 31 ms
12,656 KB
testcase_17 AC 31 ms
12,080 KB
testcase_18 AC 32 ms
13,168 KB
testcase_19 AC 31 ms
12,000 KB
testcase_20 AC 31 ms
12,060 KB
testcase_21 AC 30 ms
11,816 KB
testcase_22 AC 31 ms
12,348 KB
testcase_23 AC 31 ms
12,116 KB
testcase_24 AC 32 ms
12,220 KB
testcase_25 AC 31 ms
12,032 KB
testcase_26 AC 32 ms
11,632 KB
testcase_27 AC 33 ms
12,392 KB
testcase_28 AC 32 ms
12,404 KB
testcase_29 AC 29 ms
12,576 KB
testcase_30 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.algorithm, std.conv, std.range, std.stdio, std.string;

void main()
{
  auto rd = readln.split, n = rd[0].to!int, k = rd[1].to!long;
  auto d = readln.split.map!(to!int).map!"a-1".array;

  auto v = new bool[](n), t = 0, r = 0;
  foreach (i; 0..n) {
    if (v[i]) continue;
    auto j = i;
    while (!v[j]) {
      v[j] = true;
      ++r;
      j = d[j];
    }
    t += r-1;
    r = 0;
  }

  writeln(k >= t && (k-t)%2 == 0 ? "YES" : "NO");
}
0