結果

問題 No.2518 Adjacent Larger
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-10-27 22:21:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,576 ms / 2,000 ms
コード長 760 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 110,016 KB
最終ジャッジ日時 2024-09-25 14:25:00
合計ジャッジ時間 18,623 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,744 KB
testcase_01 AC 327 ms
80,084 KB
testcase_02 AC 359 ms
79,240 KB
testcase_03 AC 330 ms
79,936 KB
testcase_04 AC 325 ms
78,960 KB
testcase_05 AC 345 ms
79,312 KB
testcase_06 AC 261 ms
77,960 KB
testcase_07 AC 262 ms
77,764 KB
testcase_08 AC 265 ms
77,880 KB
testcase_09 AC 281 ms
77,516 KB
testcase_10 AC 278 ms
78,000 KB
testcase_11 AC 240 ms
77,100 KB
testcase_12 AC 246 ms
77,772 KB
testcase_13 AC 253 ms
77,600 KB
testcase_14 AC 224 ms
77,804 KB
testcase_15 AC 236 ms
78,244 KB
testcase_16 AC 1,544 ms
107,240 KB
testcase_17 AC 863 ms
93,992 KB
testcase_18 AC 883 ms
94,540 KB
testcase_19 AC 753 ms
91,536 KB
testcase_20 AC 1,114 ms
98,740 KB
testcase_21 AC 173 ms
105,672 KB
testcase_22 AC 176 ms
105,788 KB
testcase_23 AC 1,576 ms
107,816 KB
testcase_24 AC 1,330 ms
106,708 KB
testcase_25 AC 1,418 ms
107,340 KB
testcase_26 AC 1,406 ms
106,772 KB
testcase_27 AC 311 ms
105,888 KB
testcase_28 AC 1,405 ms
110,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop,heappush

def solve():
    n = int(input())
    A = list(map(int,input().split()))
    use = [0]*n
    h = []
    for i,a in enumerate(A):
        heappush(h,[a,i])

    while h:
        c,ind = heappop(h)
        if A[ind]!= c:
            continue
        if A[ind]:
            return "No"

        use[ind] = 1
        ni = (ind+1)%n
        if use[ni] == 0:
            A[ni] -= 1
            if A[ni] < 0:
                return "No"
            heappush(h,[A[ni],ni])

        ni = (ind-1)%n
        if use[ni] == 0:
            A[ni] -= 1
            if A[ni] < 0:
                return "No"
            heappush(h,[A[ni],ni])

    return "Yes" if sum(A) == 0 else "No"

t = int(input())
for _ in range(t):
    print(solve())
0