結果

問題 No.482 あなたの名は
ユーザー crazybbb3crazybbb3
提出日時 2017-02-10 22:37:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 273 ms / 2,000 ms
コード長 2,172 bytes
コンパイル時間 2,447 ms
コンパイル使用メモリ 77,800 KB
実行使用メモリ 58,132 KB
最終ジャッジ日時 2024-06-09 10:55:44
合計ジャッジ時間 7,986 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
50,480 KB
testcase_01 AC 55 ms
50,324 KB
testcase_02 AC 53 ms
49,920 KB
testcase_03 AC 54 ms
50,044 KB
testcase_04 AC 52 ms
50,464 KB
testcase_05 AC 54 ms
50,260 KB
testcase_06 AC 53 ms
50,468 KB
testcase_07 AC 59 ms
50,452 KB
testcase_08 AC 59 ms
50,188 KB
testcase_09 AC 56 ms
50,324 KB
testcase_10 AC 58 ms
50,372 KB
testcase_11 AC 57 ms
50,228 KB
testcase_12 AC 61 ms
50,380 KB
testcase_13 AC 57 ms
50,208 KB
testcase_14 AC 60 ms
50,332 KB
testcase_15 AC 257 ms
57,824 KB
testcase_16 AC 253 ms
57,544 KB
testcase_17 AC 251 ms
57,548 KB
testcase_18 AC 254 ms
57,760 KB
testcase_19 AC 251 ms
57,724 KB
testcase_20 AC 273 ms
57,928 KB
testcase_21 AC 257 ms
57,656 KB
testcase_22 AC 256 ms
57,896 KB
testcase_23 AC 263 ms
58,132 KB
testcase_24 AC 251 ms
57,664 KB
testcase_25 AC 260 ms
57,732 KB
testcase_26 AC 239 ms
57,752 KB
testcase_27 AC 254 ms
57,692 KB
testcase_28 AC 252 ms
57,764 KB
testcase_29 AC 247 ms
57,688 KB
testcase_30 AC 56 ms
50,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.StringTokenizer;

public class Main {

    void solve() throws IOException {
        int n = ni();
        long k = nl();
        int[] d = new int[n];
        for (int i = 0; i < n; i++) {
            d[i] = ni() - 1;
        }

        boolean[] used = new boolean[n];
        for (int i = 0; i < n; i++) {
            if (used[i]) continue;

            used[i] = true;
            int next = d[i];
            while (next != i) {
                used[next] = true;
                k--;
                next = d[next];
            }
        }

        if (k >= 0 && k % 2 == 0) {
            out.println("YES");
        } else {
            out.println("NO");
        }
    }

    String ns() throws IOException {
        while (!tok.hasMoreTokens()) {
            tok = new StringTokenizer(in.readLine(), " ");
        }
        return tok.nextToken();
    }

    int ni() throws IOException {
        return Integer.parseInt(ns());
    }

    long nl() throws IOException {
        return Long.parseLong(ns());
    }

    double nd() throws IOException {
        return Double.parseDouble(ns());
    }

    String[] nsa(int n) throws IOException {
        String[] res = new String[n];
        for (int i = 0; i < n; i++) {
            res[i] = ns();
        }
        return res;
    }

    int[] nia(int n) throws IOException {
        int[] res = new int[n];
        for (int i = 0; i < n; i++) {
            res[i] = ni();
        }
        return res;
    }

    long[] nla(int n) throws IOException {
        long[] res = new long[n];
        for (int i = 0; i < n; i++) {
            res[i] = nl();
        }
        return res;
    }

    static BufferedReader in;
    static PrintWriter out;
    static StringTokenizer tok;

    public static void main(String[] args) throws IOException {
        in = new BufferedReader(new InputStreamReader(System.in));
        out = new PrintWriter(System.out);
        tok = new StringTokenizer("");
        Main main = new Main();
        main.solve();
        out.close();
    }
}
0