結果

問題 No.590 Replacement
ユーザー 夕叢霧香(ゆうむらきりか)夕叢霧香(ゆうむらきりか)
提出日時 2017-11-03 23:07:31
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,893 bytes
コンパイル時間 2,419 ms
コンパイル使用メモリ 77,748 KB
実行使用メモリ 129,348 KB
最終ジャッジ日時 2024-11-23 14:49:27
合計ジャッジ時間 83,970 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
46,600 KB
testcase_01 AC 125 ms
101,336 KB
testcase_02 AC 120 ms
46,348 KB
testcase_03 AC 126 ms
101,912 KB
testcase_04 AC 132 ms
47,048 KB
testcase_05 AC 126 ms
106,300 KB
testcase_06 AC 130 ms
46,744 KB
testcase_07 AC 399 ms
111,296 KB
testcase_08 AC 290 ms
51,164 KB
testcase_09 AC 418 ms
114,512 KB
testcase_10 AC 295 ms
51,360 KB
testcase_11 AC 202 ms
109,476 KB
testcase_12 AC 454 ms
52,228 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 302 ms
112,700 KB
testcase_16 AC 1,077 ms
53,524 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 109 ms
108,108 KB
testcase_34 AC 121 ms
46,520 KB
testcase_35 AC 109 ms
108,284 KB
testcase_36 TLE -
testcase_37 TLE -
testcase_38 AC 655 ms
67,548 KB
testcase_39 AC 666 ms
129,348 KB
testcase_40 TLE -
testcase_41 TLE -
testcase_42 AC 660 ms
67,412 KB
testcase_43 AC 642 ms
62,760 KB
testcase_44 AC 551 ms
62,728 KB
testcase_45 TLE -
testcase_46 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    static final long MOD = 1000000007;
    static int[] inverse(int[] permutation) {
        int n = permutation.length;
        int[] result = new int[n];
        for (int i = 0; i < n; ++i) {
            result[permutation[i]] = i;
        }
        return result;
    }
    static int[] twice(int[] permutation) {
        int n = permutation.length;
        int[] result = new int[n];
        for (int i = 0; i < n; ++i) {
            result[i] = permutation[permutation[i]];
        }
        return result;
    }
    static final int B = 17;
    public static void main(String[] args) {
	Scanner scan = new Scanner(System.in);
        int n = Integer.parseInt(scan.next());
        int[] a = new int[n];
        int[] b = new int[n];
        for (int i = 0; i < n; ++i) {
            a[i] = Integer.parseInt(scan.next()) - 1;
        }
        for (int i = 0; i < n; ++i) {
            b[i] = Integer.parseInt(scan.next()) - 1;
        }
        int[][] aDouble = new int[B][];
        int[][] bDouble = new int[B][];
        aDouble[0] = inverse(a);
        bDouble[0] = inverse(b);
        for (int i = 1; i < B; ++i) {
            aDouble[i] = twice(aDouble[i - 1]);
            bDouble[i] = twice(bDouble[i - 1]);
        }
        // System.err.println(Arrays.deepToString(aDouble));
        // System.err.println(Arrays.deepToString(bDouble));
        long total = 0;
        for (int i = 0; i < n; ++i) {
            // (i, i) no gyaku
            long pos = 0;
            int ai = i;
            int bi = i;
            while (true) {
                if (pos > 0 && ai == bi) {
                    break;
                }
                ai = aDouble[0][ai];
                bi = bDouble[0][bi];
                pos++;
            }
            total = (total + pos * (pos - 1) / 2) % MOD;
        }
        System.out.println(total);
    }
}
0