結果
| 問題 |
No.1439 Let's Compare!!!!
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-11-23 20:36:47 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 594 ms / 2,000 ms |
| コード長 | 635 bytes |
| コンパイル時間 | 243 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 24,456 KB |
| 最終ジャッジ日時 | 2024-11-29 08:30:25 |
| 合計ジャッジ時間 | 6,681 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 17 |
ソースコード
def main():
import sys
input=sys.stdin.readline
from heapq import heappop,heappush,heapify
n=int(input())
s=list(input())
t=list(input())
diff=[]
heapify(diff)
for i in range(n):
if s[i]!=t[i]:
heappush(diff,i)
q=int(input())
for _ in range(q):
c,x,y=input().split()
x=int(x)-1
if c=='S':
s[x]=y
else:
t[x]=y
if s[x]!=t[x]:
heappush(diff,x)
k=-1
while diff:
j=heappop(diff)
if s[j]!=t[j]:
k=j
break
if k==-1:
print('=')
else:
print('>' if s[k]>t[k] else '<')
heappush(diff,k)
main()