結果

問題 No.2716 Falcon Method
ユーザー tobbietobbie
提出日時 2024-05-05 14:04:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 275 ms / 2,000 ms
コード長 881 bytes
コンパイル時間 1,526 ms
コンパイル使用メモリ 170,072 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-05 14:05:06
合計ジャッジ時間 7,204 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 4 ms
6,940 KB
testcase_08 AC 4 ms
6,944 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 257 ms
6,944 KB
testcase_12 AC 179 ms
5,376 KB
testcase_13 AC 134 ms
5,376 KB
testcase_14 AC 218 ms
5,376 KB
testcase_15 AC 154 ms
5,376 KB
testcase_16 AC 206 ms
5,376 KB
testcase_17 AC 226 ms
5,376 KB
testcase_18 AC 257 ms
5,376 KB
testcase_19 AC 189 ms
5,376 KB
testcase_20 AC 154 ms
5,376 KB
testcase_21 AC 208 ms
5,376 KB
testcase_22 AC 267 ms
5,376 KB
testcase_23 AC 265 ms
5,376 KB
testcase_24 AC 257 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 275 ms
5,376 KB
testcase_28 AC 266 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define rep(i, n) for (int i = 0; i < (int)n; i++)
#define INF 1000000001
using ll = long long int;

int main() {
  int N, Q;
  cin >> N >> Q;
  string S;
  cin >> S;
  vector<int> h(N+1), w(N+1);
  rep(i, N) {
    h[i+1] = (S[i] == 'D') ? h[i] + 1 : h[i];
    w[i+1] = (S[i] == 'R') ? w[i] + 1 : w[i];
  }
  rep(j, Q) {
    int H, W, P;
    cin >> H >> W >> P;
    int h0 = (h[P % N] + H);
    int w0 = (w[P % N] + W);
    ll nh = INF, nw = INF;
    if (h[N] > 0)
      nh = (h0 % h[N] == 0) ? (ll)(h0 / h[N] - 1) * N : (ll)(h0 / h[N]) * N;
    if (w[N] > 0)
      nw = (w0 % w[N] == 0) ? (ll)(w0 / w[N] - 1) * N : (ll)(w0 / w[N]) * N;
    nh += lower_bound(h.begin(), h.end(), h0-(nh/N)*h[N]) - h.begin();
    nw += lower_bound(w.begin(), w.end(), w0-(nw/N)*w[N]) - w.begin();
    cout << min(nh, nw) % N << endl;
  }
  return 0;
}
0