結果

問題 No.2716 Falcon Method
ユーザー inkyamaninkyaman
提出日時 2024-04-06 20:54:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,407 bytes
コンパイル時間 955 ms
コンパイル使用メモリ 118,852 KB
実行使用メモリ 6,784 KB
最終ジャッジ日時 2024-10-01 04:05:40
合計ジャッジ時間 5,763 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 4 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 4 ms
5,248 KB
testcase_09 AC 3 ms
5,248 KB
testcase_10 AC 3 ms
5,248 KB
testcase_11 AC 225 ms
6,656 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 203 ms
6,016 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 181 ms
6,016 KB
testcase_22 AC 247 ms
6,656 KB
testcase_23 AC 261 ms
6,784 KB
testcase_24 AC 244 ms
6,656 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 1 ms
5,248 KB
testcase_27 AC 277 ms
6,784 KB
testcase_28 AC 264 ms
6,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <queue>
#include <math.h>
#include <cmath>
#include <stack>
#include <map>
#include <set>
#include <numeric>
#include <iomanip>
#include <climits>
#include <functional>
#include <cassert>
#include <tuple>
using namespace std;
using ll = long long;

int N,Q;
string S;

int main() {

    cin >> N >> Q >> S;
    vector<int> hsum(2*N+1,0), wsum(2*N+1,0);
    for(int i = 0; i < 2*N; ++i) {
        hsum[i+1] = hsum[i];
        wsum[i+1] = wsum[i];
        if(S[i%N] == 'D') hsum[i+1]++;
        else wsum[i+1]++;
    }

    int hcnt = hsum[N];
    int wcnt = wsum[N];

    while(Q--) {
        int H, W, P; cin >> H >> W >> P;
        ll h = 1e9;
        ll w = 1e9;
        if(hcnt != 0) {
            ll a = (H-1)/hcnt*N;
            int b = lower_bound(hsum.begin(),hsum.end(),hsum[P]+H-(H-1)/hcnt*hcnt)-hsum.begin();
            b -= P;
            h = a+b;
            // cout << a << " " << b << endl;
        }
        if(wcnt != 0) {
            ll a = (W-1)/wcnt*N;
            int b = lower_bound(wsum.begin(),wsum.end(),wsum[P]+W-(W-1)/wcnt*wcnt)-wsum.begin();
            b -= P;
            w = a+b;
            // cout << a << " " << b << endl;
        }

        // cout << "h w :" << h << " " << w << endl;
        ll mn = min(h,w)-1;
        cout << (mn+P+1)%N << endl;
    }

}

0