結果

問題 No.1922 Separate and Attach
ユーザー titiatitia
提出日時 2023-05-23 01:32:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 393 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 37,228 KB
最終ジャッジ日時 2024-06-02 02:09:15
合計ジャッジ時間 8,523 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,880 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 24 ms
10,752 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 WA -
testcase_09 AC 26 ms
10,752 KB
testcase_10 WA -
testcase_11 AC 25 ms
10,752 KB
testcase_12 WA -
testcase_13 AC 25 ms
10,880 KB
testcase_14 WA -
testcase_15 AC 25 ms
10,752 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 24 ms
10,752 KB
testcase_19 AC 24 ms
10,752 KB
testcase_20 AC 24 ms
10,752 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 25 ms
10,880 KB
testcase_26 AC 26 ms
10,752 KB
testcase_27 AC 27 ms
10,752 KB
testcase_28 AC 30 ms
11,264 KB
testcase_29 AC 54 ms
14,592 KB
testcase_30 AC 136 ms
27,680 KB
testcase_31 AC 128 ms
27,692 KB
testcase_32 AC 197 ms
37,228 KB
testcase_33 AC 228 ms
37,084 KB
testcase_34 AC 210 ms
37,100 KB
testcase_35 AC 236 ms
37,100 KB
testcase_36 AC 235 ms
37,100 KB
testcase_37 AC 252 ms
37,096 KB
testcase_38 AC 262 ms
37,096 KB
testcase_39 AC 263 ms
37,216 KB
testcase_40 AC 385 ms
37,080 KB
testcase_41 AC 260 ms
37,100 KB
testcase_42 AC 191 ms
37,104 KB
testcase_43 AC 188 ms
37,212 KB
testcase_44 AC 234 ms
37,100 KB
testcase_45 AC 235 ms
37,100 KB
testcase_46 AC 262 ms
37,092 KB
testcase_47 AC 212 ms
37,100 KB
testcase_48 AC 82 ms
24,964 KB
testcase_49 AC 237 ms
37,096 KB
testcase_50 WA -
testcase_51 AC 236 ms
37,088 KB
testcase_52 AC 26 ms
10,752 KB
testcase_53 AC 25 ms
10,880 KB
testcase_54 WA -
testcase_55 AC 25 ms
10,752 KB
testcase_56 AC 27 ms
10,752 KB
testcase_57 AC 25 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
P=list(map(int,input().split()))
Q=list(map(int,input().split()))

if P==Q:
    print(0)
    exit()

A=[(P[i],i) for i in range(N)]
A.sort()

B=[-1]*N
for i in range(N):
    B[A[Q[i]-1][1]]=i+1

B_INV=[-1]*N
for i in range(N):
    B_INV[B[i]-1]=i

block=1
for i in range(N-1):
    if B_INV[i]>B_INV[i+1]:
        block+=1

ANS=0
while block:
    ANS+=1
    block//=2

print(ANS)
0