結果

問題 No.2716 Falcon Method
ユーザー tnakao0123tnakao0123
提出日時 2024-04-30 14:22:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,062 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 44,928 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-30 14:22:53
合計ジャッジ時間 4,601 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 80 ms
6,940 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 65 ms
6,944 KB
testcase_22 AC 90 ms
6,944 KB
testcase_23 WA -
testcase_24 AC 85 ms
6,940 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 1 ms
6,940 KB
testcase_27 WA -
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2716.cc:  No.2716 Falcon Method - yukicoder
 */

#include<cstdio>
#include<algorithm>
 
using namespace std;

/* constant */

const int MAX_N = 200000;
const int INF = 1 << 30;

/* typedef */

/* global variables */

char s[MAX_N + 4];
int xss[MAX_N * 2 + 1], yss[MAX_N * 2 + 1];

/* subroutines */

/* main */

int main() {
  int n, qn;
  scanf("%d%d%s", &n, &qn, s);

  int n2 = n * 2;
  for (int i = 0; i < n2; i++) {
    xss[i + 1] = xss[i] + (s[i % n] == 'D' ? 1 : 0);
    yss[i + 1] = yss[i] + (s[i % n] == 'R' ? 1 : 0);
  }

  while (qn--) {
    int h, w, p;
    scanf("%d%d%d", &h, &w, &p);

    int ex = (xss[n] == 0) ? INF : (h - 1) / xss[n];
    int ey = (yss[n] == 0) ? INF : (w - 1) / yss[n];
    int e = min(ex, ey);
    h -= e * xss[n], w -= e * yss[n];
    //printf(" h=%d, w=%d\n", h, w);

    int k0 = p, k1 = p + n + 1;
    while (k0 + 1 < k1) {
      int k = (k0 + k1) / 2;
      if (xss[k] - xss[p] <= h && yss[k] - yss[p] <= w) k0 = k;
      else k1 = k;
    }

    printf("%d\n", k0 % n);
  }

  return 0;
}
0