結果

問題 No.1439 Let's Compare!!!!
ユーザー titiatitia
提出日時 2021-03-26 22:10:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 830 ms / 2,000 ms
コード長 866 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 28,132 KB
最終ジャッジ日時 2024-05-06 22:26:01
合計ジャッジ時間 8,534 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,752 KB
testcase_01 AC 34 ms
10,752 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 34 ms
10,752 KB
testcase_04 AC 32 ms
11,008 KB
testcase_05 AC 32 ms
10,752 KB
testcase_06 AC 32 ms
10,752 KB
testcase_07 AC 48 ms
11,264 KB
testcase_08 AC 54 ms
11,264 KB
testcase_09 AC 40 ms
11,008 KB
testcase_10 AC 819 ms
28,132 KB
testcase_11 AC 723 ms
22,244 KB
testcase_12 AC 711 ms
21,868 KB
testcase_13 AC 830 ms
27,504 KB
testcase_14 AC 806 ms
27,380 KB
testcase_15 AC 719 ms
22,260 KB
testcase_16 AC 732 ms
21,620 KB
testcase_17 AC 741 ms
15,984 KB
testcase_18 AC 601 ms
15,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
import heapq

N=int(input())
S=list(map(int,list(input().strip())))
T=list(map(int,list(input().strip())))

Q1=[]
Q2=[]

for i in range(N):
    if S[i]<T[i]:
        Q1.append(i)
    elif S[i]>T[i]:
        Q2.append(i)

Q=int(input())
for i in range(Q):
    c,x,y=input().split()
    x=int(x)-1
    y=int(y)

    if c=="S":
        S[x]=y
    else:
        T[x]=y

    if S[x]<T[x]:
        heapq.heappush(Q1,x)
    elif S[x]>T[x]:
        heapq.heappush(Q2,x)

    while Q1 and S[Q1[0]]>=T[Q1[0]]:
        heapq.heappop(Q1)

    while Q2 and S[Q2[0]]<=T[Q2[0]]:
        heapq.heappop(Q2)

    if Q1 and Q2:
        
        if Q1[0]<Q2[0]:
            print("<")
        elif Q2[0]<Q1[0]:
            print(">")

    elif Q1:
        print("<")
    elif Q2:
        print(">")
    else:
        print("=")
        

    





0