結果

問題 No.2716 Falcon Method
ユーザー tnakao0123tnakao0123
提出日時 2024-04-30 14:25:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 1,060 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 44,800 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-30 14:25:10
合計ジャッジ時間 3,049 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 72 ms
6,944 KB
testcase_12 AC 56 ms
6,944 KB
testcase_13 AC 46 ms
6,940 KB
testcase_14 AC 66 ms
6,940 KB
testcase_15 AC 52 ms
6,944 KB
testcase_16 AC 61 ms
6,944 KB
testcase_17 AC 73 ms
6,944 KB
testcase_18 AC 78 ms
6,940 KB
testcase_19 AC 57 ms
6,940 KB
testcase_20 AC 45 ms
6,940 KB
testcase_21 AC 57 ms
6,944 KB
testcase_22 AC 90 ms
6,940 KB
testcase_23 AC 73 ms
6,944 KB
testcase_24 AC 74 ms
6,944 KB
testcase_25 AC 1 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 79 ms
6,944 KB
testcase_28 AC 83 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

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", k1 % n);
  }

  return 0;
}
0