結果

問題 No.1439 Let's Compare!!!!
ユーザー lie_of_lillielie_of_lillie
提出日時 2021-05-06 13:41:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,346 ms / 2,000 ms
コード長 848 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 26,600 KB
最終ジャッジ日時 2024-09-14 05:40:59
合計ジャッジ時間 13,259 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 32 ms
10,752 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 54 ms
11,136 KB
testcase_08 AC 68 ms
11,264 KB
testcase_09 AC 42 ms
11,136 KB
testcase_10 AC 1,345 ms
26,216 KB
testcase_11 AC 1,231 ms
22,748 KB
testcase_12 AC 1,162 ms
22,760 KB
testcase_13 AC 1,342 ms
26,344 KB
testcase_14 AC 1,346 ms
26,600 KB
testcase_15 AC 1,230 ms
23,144 KB
testcase_16 AC 1,224 ms
22,880 KB
testcase_17 AC 1,296 ms
17,188 KB
testcase_18 AC 1,018 ms
15,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
import collections
N = int(input())
S = list(map(int, list(input())))
T = list(map(int, list(input())))
Q = int(input())
que = collections.deque()
pq = []
heapq.heapify(pq)
for i, (s, t) in enumerate(zip(S, T)):
    if s != t:
        heapq.heappush(pq, i)

for q in range(Q):
    flag, s, v = input().split()
    s = int(s)-1
    v = int(v)
    if flag == "S":
        S[s] = v
    else:
        T[s] = v
    if S[s] != T[s]:
        heapq.heappush(pq, s)

    tmp = "="
    while pq:
        cur = heapq.heappop(pq)
        if S[cur] > T[cur]:
            tmp = ">"
            heapq.heappush(pq, cur)
            break
        elif S[cur] == T[cur]:
            continue
        elif S[cur] < T[cur]:
            tmp = "<"
            heapq.heappush(pq, cur)
            break
    que.append(tmp)
while que:
    print(que.popleft())
0