結果

問題 No.2716 Falcon Method
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-04-06 01:00:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 511 ms / 2,000 ms
コード長 976 bytes
コンパイル時間 1,950 ms
コンパイル使用メモリ 205,292 KB
実行使用メモリ 14,356 KB
最終ジャッジ日時 2024-10-01 03:18:08
合計ジャッジ時間 8,452 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 3 ms
5,248 KB
testcase_10 AC 3 ms
5,248 KB
testcase_11 AC 308 ms
13,752 KB
testcase_12 AC 234 ms
13,824 KB
testcase_13 AC 184 ms
13,824 KB
testcase_14 AC 279 ms
12,160 KB
testcase_15 AC 207 ms
13,440 KB
testcase_16 AC 250 ms
12,160 KB
testcase_17 AC 303 ms
12,544 KB
testcase_18 AC 367 ms
12,924 KB
testcase_19 AC 273 ms
11,904 KB
testcase_20 AC 215 ms
13,272 KB
testcase_21 AC 290 ms
12,340 KB
testcase_22 AC 324 ms
14,336 KB
testcase_23 AC 511 ms
14,216 KB
testcase_24 AC 383 ms
14,336 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 1 ms
5,248 KB
testcase_27 AC 400 ms
14,336 KB
testcase_28 AC 422 ms
14,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
void fast_io() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
}

int main() {
    fast_io();
    int n, q;
    cin >> n >> q;
    string s;
    cin >> s;
    vector<vector<long long>> cum(n + 1, vector<long long>(2));
    for (int i = 0; i < n; i++) {
        cum[i + 1][0] = cum[i][0] + (s[i] == 'D');
        cum[i + 1][1] = cum[i][1] + (s[i] == 'R');
    }
    auto get = [&](int l, int r, int c) {
        r -= l / n;
        l %= n;
        return cum[n][c] * (r / n - l / n) + cum[r % n][c] - cum[l][c];
    };
    for (; q--;) {
        long long h, w, p;
        cin >> h >> w >> p;
        long long ok = p - 1, ng = p + h + w;
        while (abs(ok - ng) > 1) {
            long long mid = (ok + ng) / 2;
            if (get(p, mid, 0) >= h || get(p, mid, 1) >= w) {
                ng = mid;
            } else {
                ok = mid;
            }
        }
        cout << ng % n << endl;
    }
}
0