結果

問題 No.1650 Moving Coins
ユーザー shotoyooshotoyoo
提出日時 2021-08-20 23:17:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 189 ms / 2,000 ms
コード長 1,086 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 81,960 KB
実行使用メモリ 128,756 KB
最終ジャッジ日時 2024-10-14 06:54:43
合計ジャッジ時間 7,400 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
51,968 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 97 ms
88,704 KB
testcase_04 AC 90 ms
85,760 KB
testcase_05 AC 95 ms
88,704 KB
testcase_06 AC 102 ms
89,984 KB
testcase_07 AC 97 ms
88,576 KB
testcase_08 AC 146 ms
104,832 KB
testcase_09 AC 131 ms
105,856 KB
testcase_10 AC 131 ms
105,592 KB
testcase_11 AC 157 ms
105,472 KB
testcase_12 AC 139 ms
97,536 KB
testcase_13 AC 139 ms
97,920 KB
testcase_14 AC 154 ms
105,728 KB
testcase_15 AC 133 ms
95,232 KB
testcase_16 AC 167 ms
106,624 KB
testcase_17 AC 152 ms
106,884 KB
testcase_18 AC 170 ms
110,740 KB
testcase_19 AC 155 ms
115,028 KB
testcase_20 AC 161 ms
114,312 KB
testcase_21 AC 165 ms
114,044 KB
testcase_22 AC 184 ms
128,756 KB
testcase_23 AC 189 ms
128,752 KB
testcase_24 AC 90 ms
90,880 KB
testcase_25 AC 94 ms
88,960 KB
testcase_26 AC 124 ms
110,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))

def runlength(s):
    if not s:
        return []
    c = s[0]
    v = 1
    n = len(s)
    l = []
    for i in range(1, n):
        if c==s[i]:
            v += 1
        else:
            l.append((c,v))
            c = s[i]
            v = 1
    l.append((c,v))
    return l

n = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
lr = [0]*n
for i in range(n):
    if a[i]<b[i]:
        lr[i] = 1
    elif a[i]>b[i]:
        lr[i] = -1
ans = []
res = runlength(lr)
i = 0
for c,v in res:
    if c==0:
        pass
    elif c==-1:
        for j in range(i, i+v):
            for _ in range(abs(a[j]-b[j])):
                ans.append(f"{j+1} L")
    else:
        for j in range(i, i+v)[::-1]:
            for _ in range(abs(a[j]-b[j])):
                ans.append(f"{j+1} R")
    i += v
print(len(ans))
write("\n".join(ans))
0