結果
| 問題 | No.590 Replacement |
| コンテスト | |
| ユーザー |
夕叢霧香(ゆうむらきりか)
|
| 提出日時 | 2017-11-03 23:07:31 |
| 言語 | Java (openjdk 23) |
| 結果 |
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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 23 TLE * 24 |
ソースコード
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);
}
}
夕叢霧香(ゆうむらきりか)