結果

問題 No.2716 Falcon Method
ユーザー Today03Today03
提出日時 2024-04-05 21:50:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 851 ms / 2,000 ms
コード長 1,273 bytes
コンパイル時間 2,605 ms
コンパイル使用メモリ 205,548 KB
実行使用メモリ 14,464 KB
最終ジャッジ日時 2024-10-01 02:05:55
合計ジャッジ時間 13,721 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 3 ms
6,820 KB
testcase_05 AC 1 ms
6,820 KB
testcase_06 AC 5 ms
6,816 KB
testcase_07 AC 5 ms
6,816 KB
testcase_08 AC 5 ms
6,816 KB
testcase_09 AC 5 ms
6,820 KB
testcase_10 AC 5 ms
6,816 KB
testcase_11 AC 642 ms
13,816 KB
testcase_12 AC 505 ms
13,736 KB
testcase_13 AC 395 ms
14,032 KB
testcase_14 AC 586 ms
12,052 KB
testcase_15 AC 430 ms
13,480 KB
testcase_16 AC 547 ms
12,240 KB
testcase_17 AC 654 ms
12,568 KB
testcase_18 AC 811 ms
13,100 KB
testcase_19 AC 546 ms
11,952 KB
testcase_20 AC 456 ms
13,424 KB
testcase_21 AC 598 ms
12,456 KB
testcase_22 AC 693 ms
14,392 KB
testcase_23 AC 851 ms
14,464 KB
testcase_24 AC 832 ms
14,312 KB
testcase_25 AC 2 ms
6,820 KB
testcase_26 AC 2 ms
6,820 KB
testcase_27 AC 655 ms
14,432 KB
testcase_28 AC 665 ms
14,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int INF = 1e9 + 10;
const ll INFL = 4e18;

int main() {
    int N, Q;
    cin >> N >> Q;
    string S;
    cin >> S;

    vector<vector<int>> cnt(N + 1, vector<int>(2, 0));
    for (int i = 0; i < N; i++) {
        cnt[i + 1][0] = cnt[i][0];
        cnt[i + 1][1] = cnt[i][1];
        if (S[i] == 'D') {
            cnt[i + 1][0]++;
        } else {
            cnt[i + 1][1]++;
        }
    }

    while (Q--) {
        ll H, W, P;
        cin >> H >> W >> P;

        ll lo = 0, hi = 1ll * INF * 3;
        while (hi - lo > 1) {
            ll mid = (lo + hi) / 2;

            ll cycle = mid / N;
            ll rem = (P + mid) % N;

            ll nx = 0, ny = 0;
            nx += cnt[N][0] * cycle;
            ny += cnt[N][1] * cycle;

            if (P <= rem) {
                nx += cnt[rem][0] - cnt[P][0];
                ny += cnt[rem][1] - cnt[P][1];
            } else {
                nx += cnt[N][0] - cnt[P][0] + cnt[rem][0];
                ny += cnt[N][1] - cnt[P][1] + cnt[rem][1];
            }

            if (nx < H && ny < W) {
                lo = mid;
            } else {
                hi = mid;
            }
        }

        cout << (P + hi) % N << '\n';
    }
}
0