結果

問題 No.1922 Separate and Attach
ユーザー tatyamtatyam
提出日時 2022-05-02 18:00:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 368 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 81,924 KB
実行使用メモリ 105,148 KB
最終ジャッジ日時 2024-07-01 21:56:40
合計ジャッジ時間 5,479 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,372 KB
testcase_01 AC 39 ms
52,700 KB
testcase_02 AC 37 ms
52,112 KB
testcase_03 AC 38 ms
51,812 KB
testcase_04 AC 37 ms
52,648 KB
testcase_05 AC 39 ms
51,880 KB
testcase_06 AC 38 ms
53,568 KB
testcase_07 AC 38 ms
51,836 KB
testcase_08 AC 38 ms
52,440 KB
testcase_09 AC 37 ms
51,868 KB
testcase_10 AC 38 ms
51,936 KB
testcase_11 AC 42 ms
53,672 KB
testcase_12 AC 39 ms
52,500 KB
testcase_13 AC 38 ms
52,488 KB
testcase_14 AC 39 ms
51,564 KB
testcase_15 AC 37 ms
53,120 KB
testcase_16 AC 38 ms
52,088 KB
testcase_17 AC 37 ms
51,888 KB
testcase_18 AC 38 ms
51,816 KB
testcase_19 AC 38 ms
52,420 KB
testcase_20 AC 38 ms
52,400 KB
testcase_21 AC 37 ms
53,096 KB
testcase_22 AC 37 ms
52,212 KB
testcase_23 AC 37 ms
52,456 KB
testcase_24 AC 38 ms
51,956 KB
testcase_25 AC 38 ms
52,228 KB
testcase_26 AC 37 ms
52,484 KB
testcase_27 AC 41 ms
58,512 KB
testcase_28 AC 45 ms
61,856 KB
testcase_29 AC 49 ms
68,048 KB
testcase_30 AC 72 ms
89,740 KB
testcase_31 AC 71 ms
90,848 KB
testcase_32 AC 90 ms
104,740 KB
testcase_33 AC 93 ms
104,316 KB
testcase_34 AC 91 ms
104,696 KB
testcase_35 AC 90 ms
104,956 KB
testcase_36 AC 94 ms
104,828 KB
testcase_37 AC 92 ms
104,168 KB
testcase_38 AC 91 ms
104,660 KB
testcase_39 AC 91 ms
104,292 KB
testcase_40 AC 93 ms
104,200 KB
testcase_41 AC 93 ms
104,816 KB
testcase_42 AC 91 ms
104,972 KB
testcase_43 AC 92 ms
104,740 KB
testcase_44 AC 89 ms
104,472 KB
testcase_45 AC 92 ms
105,148 KB
testcase_46 AC 92 ms
104,688 KB
testcase_47 AC 92 ms
104,472 KB
testcase_48 AC 91 ms
104,732 KB
testcase_49 AC 93 ms
104,476 KB
testcase_50 AC 91 ms
104,672 KB
testcase_51 AC 90 ms
104,232 KB
testcase_52 AC 38 ms
52,968 KB
testcase_53 AC 38 ms
52,436 KB
testcase_54 AC 38 ms
52,068 KB
testcase_55 AC 38 ms
52,012 KB
testcase_56 AC 38 ms
52,572 KB
testcase_57 AC 37 ms
52,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
P = list(map(int, input().split()))
Q = list(map(int, input().split()))
invQ = [0] * N
invP = [0] * N
for i in range(N):
    P[i] -= 1
    Q[i] -= 1
    invQ[Q[i]] = i
for i in range(N):
    invP[invQ[P[i]]] = i
g = 1
for i in range(N - 1):
    if invP[i] > invP[i + 1]:
        g += 1
ans = 0
while g > 1:
    ans += 1
    g = (g + 1) >> 1
print(ans)
0