結果

問題 No.1650 Moving Coins
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2024-07-14 15:33:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 292 ms / 2,000 ms
コード長 715 bytes
コンパイル時間 452 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 136,204 KB
最終ジャッジ日時 2024-07-14 15:33:47
合計ジャッジ時間 10,887 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,108 KB
testcase_01 AC 45 ms
55,948 KB
testcase_02 AC 43 ms
55,728 KB
testcase_03 AC 190 ms
98,732 KB
testcase_04 AC 144 ms
92,752 KB
testcase_05 AC 158 ms
96,692 KB
testcase_06 AC 166 ms
99,232 KB
testcase_07 AC 163 ms
99,408 KB
testcase_08 AC 251 ms
113,708 KB
testcase_09 AC 214 ms
115,284 KB
testcase_10 AC 208 ms
112,840 KB
testcase_11 AC 225 ms
110,712 KB
testcase_12 AC 227 ms
101,836 KB
testcase_13 AC 199 ms
101,956 KB
testcase_14 AC 216 ms
106,652 KB
testcase_15 AC 203 ms
102,168 KB
testcase_16 AC 252 ms
113,192 KB
testcase_17 AC 236 ms
112,652 KB
testcase_18 AC 243 ms
113,540 KB
testcase_19 AC 261 ms
118,288 KB
testcase_20 AC 238 ms
136,204 KB
testcase_21 AC 269 ms
135,624 KB
testcase_22 AC 292 ms
135,744 KB
testcase_23 AC 261 ms
135,516 KB
testcase_24 AC 144 ms
99,796 KB
testcase_25 AC 149 ms
99,716 KB
testcase_26 AC 145 ms
130,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import pypyjit
# pypyjit.set_param("max_unroll_recursion=-1")
from collections import *
from functools import *
from itertools import *
from heapq import *
import sys, math
# sys.setrecursionlimit(10**4)
# input = sys.stdin.readline

N = int(input())
A = list(map(int,input().split()))
B = list(map(int,input().split()))

R = deque()
L = deque()
I = [0]*N
for i,(a,b) in enumerate(zip(A,B)):
    if a<b:
        R.append(i)
        I[i] = 1
    else:
        L.append(i)
X = []
while R:
    x = R.pop()
    d = B[x]-A[x]
    for _ in range(d):
        X.append((x+1,'R'))

while L:
    x = L.popleft()
    d = A[x]-B[x]
    for _ in range(d):
        X.append((x+1,'L'))
print(len(X))
for x,y in X:
    print(x,y)
0