結果

問題 No.1768 The frog in the well knows the great ocean.
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-11-26 23:57:01
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,317 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 129,324 KB
最終ジャッジ日時 2024-06-29 19:09:02
合計ジャッジ時間 6,051 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
52,480 KB
testcase_01 AC 105 ms
76,708 KB
testcase_02 AC 103 ms
77,392 KB
testcase_03 AC 75 ms
76,224 KB
testcase_04 AC 79 ms
76,376 KB
testcase_05 AC 77 ms
76,220 KB
testcase_06 AC 248 ms
91,784 KB
testcase_07 AC 229 ms
106,440 KB
testcase_08 AC 220 ms
95,684 KB
testcase_09 AC 210 ms
95,492 KB
testcase_10 AC 213 ms
106,512 KB
testcase_11 AC 204 ms
103,464 KB
testcase_12 AC 207 ms
102,584 KB
testcase_13 AC 218 ms
102,784 KB
testcase_14 AC 207 ms
103,152 KB
testcase_15 AC 220 ms
104,592 KB
testcase_16 AC 190 ms
110,628 KB
testcase_17 AC 201 ms
110,620 KB
testcase_18 AC 196 ms
110,756 KB
testcase_19 AC 186 ms
117,220 KB
testcase_20 AC 183 ms
110,632 KB
testcase_21 AC 33 ms
51,840 KB
testcase_22 AC 32 ms
52,224 KB
testcase_23 AC 62 ms
71,040 KB
testcase_24 AC 236 ms
80,248 KB
testcase_25 AC 172 ms
129,324 KB
testcase_26 AC 171 ms
129,308 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

    able = [False] * N
    stk = []
    stkset = set()
    
    for i in range(N):
        while len(stk) > 0 and stk[-1] <= A[i]:
            stkset.remove(stk[-1])
            del stk[-1]

        stk.append(A[i])
        stkset.add(A[i])
        if B[i] in stkset:
            able[i] = True

    A.reverse()
    B.reverse()

    stk = []
    stkset = set()
    
    for i in range(N):
        while len(stk) > 0 and stk[-1] <= A[i]:
            stkset.remove(stk[-1])
            del stk[-1]

        stk.append(A[i])
        stkset.add(A[i])
        if B[i] in stkset:
            able[N-1-i] = True

    A.reverse()
    B.reverse()

    if False in able:
        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