結果

問題 No.1768 The frog in the well knows the great ocean.
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-11-26 23:45:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 728 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 115,044 KB
最終ジャッジ日時 2024-06-29 19:07:50
合計ジャッジ時間 4,084 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,656 KB
testcase_01 AC 52 ms
66,752 KB
testcase_02 AC 58 ms
68,568 KB
testcase_03 AC 49 ms
66,684 KB
testcase_04 AC 48 ms
65,600 KB
testcase_05 AC 53 ms
68,276 KB
testcase_06 AC 119 ms
99,672 KB
testcase_07 AC 115 ms
97,448 KB
testcase_08 AC 114 ms
96,732 KB
testcase_09 AC 108 ms
92,092 KB
testcase_10 AC 121 ms
106,388 KB
testcase_11 AC 126 ms
109,620 KB
testcase_12 AC 122 ms
109,360 KB
testcase_13 AC 124 ms
109,648 KB
testcase_14 AC 123 ms
109,384 KB
testcase_15 AC 127 ms
109,312 KB
testcase_16 AC 128 ms
114,900 KB
testcase_17 AC 129 ms
115,024 KB
testcase_18 AC 133 ms
115,044 KB
testcase_19 AC 132 ms
114,656 KB
testcase_20 AC 131 ms
114,640 KB
testcase_21 AC 37 ms
52,468 KB
testcase_22 AC 36 ms
52,872 KB
testcase_23 AC 54 ms
65,872 KB
testcase_24 WA -
testcase_25 AC 124 ms
113,608 KB
testcase_26 AC 124 ms
113,628 KB
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

小さくはできない
小さいのは消せる
大きいのは消せない。



"""

import sys
from sys import stdin

tt = int(stdin.readline())

ANS = []
for loop in range(tt):

    N = int(stdin.readline())
    A = list(map(int,stdin.readline().split()))
    B = list(map(int,stdin.readline().split()))

    flag = True
    for i in range(N):
        if A[i] > B[i]:
            flag = False

    B2 = []
    for i in B:
        if len(B2) == 0 or B2[-1] != i:
            B2.append(i)

    for i in range(N-1,-1,-1):
        if len(B2) > 0 and B2[-1] == A[i]:
            del B2[-1]

    if B2:
        flag = False

    if flag:
        ANS.append("Yes")
    else:
        ANS.append("No")

print ("\n".join(ANS))
0