結果

問題 No.2716 Falcon Method
ユーザー detteiuudetteiuu
提出日時 2024-04-11 01:14:53
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 894 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 115,584 KB
最終ジャッジ日時 2024-10-02 21:08:40
合計ジャッジ時間 7,398 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,096 KB
testcase_01 RE -
testcase_02 AC 34 ms
52,480 KB
testcase_03 AC 36 ms
52,224 KB
testcase_04 AC 36 ms
52,352 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 67 ms
70,400 KB
testcase_08 AC 67 ms
70,272 KB
testcase_09 AC 75 ms
70,400 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 232 ms
110,720 KB
testcase_13 AC 217 ms
109,312 KB
testcase_14 AC 239 ms
106,624 KB
testcase_15 AC 211 ms
108,032 KB
testcase_16 AC 228 ms
105,216 KB
testcase_17 AC 245 ms
107,012 KB
testcase_18 AC 266 ms
111,488 KB
testcase_19 AC 222 ms
106,368 KB
testcase_20 AC 213 ms
107,520 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 267 ms
114,648 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 AC 328 ms
114,688 KB
testcase_28 AC 312 ms
114,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left

N, Q = map(int, input().split())
S = input()
HWP = [list(map(int, input().split())) for _ in range(Q)]

cumD = [0]
cumR = [0]
for i in range(N):
    if S[i] == "D":
        cumD.append(cumD[-1]+1)
        cumR.append(cumR[-1])
    else:
        cumD.append(cumD[-1])
        cumR.append(cumR[-1]+1)

for i in range(Q):
    H, W, P = HWP[i]
    if cumD[-1]-cumD[P] < H and cumR[-1]-cumR[P] < W:
        h, w = cumD[-1]-cumD[P], cumR[-1]-cumR[P]
        C = min((H-h-1)//cumD[-1], (W-w-1)//cumR[-1])
        h += cumD[-1]*C
        w += cumR[-1]*C
        H -= h
        W -= w
        P = 0
    if cumD[-1]-cumD[P] >= H and cumR[-1]-cumR[P] >= W:
        print(min(bisect_left(cumD, cumD[P]+H), bisect_left(cumR, cumR[P]+W)) % N)
    elif cumD[-1]-cumD[P] >= H:
        print(bisect_left(cumD, cumD[P]+H)%N)
    else:
        print(bisect_left(cumR, cumR[P]+W)%N)
0