結果

問題 No.1768 The frog in the well knows the great ocean.
ユーザー KazunKazun
提出日時 2021-11-26 23:46:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 556 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 81,876 KB
実行使用メモリ 116,052 KB
最終ジャッジ日時 2024-06-29 19:08:16
合計ジャッジ時間 4,151 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,612 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 122 ms
114,436 KB
testcase_13 WA -
testcase_14 AC 124 ms
115,324 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 123 ms
115,156 KB
testcase_20 AC 126 ms
114,916 KB
testcase_21 AC 37 ms
52,068 KB
testcase_22 AC 37 ms
52,896 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 121 ms
114,780 KB
testcase_27 AC 34 ms
52,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(N,A,B):
    for i in range(N):
        if A[i]>B[i]:
            return False

    X=[[0,0]]
    for i in range(1,N):
        if B[i-1]==B[i]:
            X[-1][1]+=1
        else:
            X.append([i,i])

    for x,y in X:
        alpha=0
        for k in range(x,y+1):
            alpha=max(alpha,A[k])

        if alpha!=B[x]:
            return False
    return True

T=int(input())
for _ in range(T):
    N=int(input())
    A=list(map(int,input().split()))
    B=list(map(int,input().split()))
    print("Yes" if solve(N,A,B) else "No")
0