結果

問題 No.2716 Falcon Method
ユーザー 👑 hos.lyrichos.lyric
提出日時 2024-04-05 22:19:46
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 2,054 bytes
コンパイル時間 1,706 ms
コンパイル使用メモリ 108,544 KB
実行使用メモリ 13,128 KB
最終ジャッジ日時 2024-04-05 22:20:04
合計ジャッジ時間 6,284 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,676 KB
testcase_01 AC 1 ms
6,676 KB
testcase_02 AC 1 ms
6,676 KB
testcase_03 AC 1 ms
6,676 KB
testcase_04 AC 1 ms
6,676 KB
testcase_05 AC 1 ms
6,676 KB
testcase_06 AC 3 ms
6,676 KB
testcase_07 AC 2 ms
6,676 KB
testcase_08 AC 2 ms
6,676 KB
testcase_09 AC 2 ms
6,676 KB
testcase_10 AC 2 ms
6,676 KB
testcase_11 AC 203 ms
13,128 KB
testcase_12 AC 152 ms
11,464 KB
testcase_13 AC 119 ms
7,072 KB
testcase_14 AC 188 ms
13,000 KB
testcase_15 AC 128 ms
9,416 KB
testcase_16 AC 160 ms
11,464 KB
testcase_17 AC 185 ms
12,744 KB
testcase_18 AC 222 ms
13,128 KB
testcase_19 AC 161 ms
11,464 KB
testcase_20 AC 129 ms
9,416 KB
testcase_21 AC 171 ms
11,592 KB
testcase_22 AC 210 ms
13,128 KB
testcase_23 AC 214 ms
13,128 KB
testcase_24 AC 211 ms
13,128 KB
testcase_25 AC 1 ms
6,676 KB
testcase_26 AC 1 ms
6,676 KB
testcase_27 AC 215 ms
13,128 KB
testcase_28 AC 212 ms
13,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.conv, std.functional, std.range, std.stdio, std.string;
import std.algorithm, std.array, std.bigint, std.bitmanip, std.complex, std.container, std.math, std.mathspecial, std.numeric, std.regex, std.typecons;
import core.bitop;

class EOFException : Throwable { this() { super("EOF"); } }
string[] tokens;
string readToken() { for (; tokens.empty; ) { if (stdin.eof) { throw new EOFException; } tokens = readln.split; } auto token = tokens.front; tokens.popFront; return token; }
int readInt() { return readToken.to!int; }
long readLong() { return readToken.to!long; }

string COLOR(string s = "") { return "\x1b[" ~ s ~ "m"; }

bool chmin(T)(ref T t, in T f) { if (t > f) { t = f; return true; } else { return false; } }
bool chmax(T)(ref T t, in T f) { if (t < f) { t = f; return true; } else { return false; } }

int binarySearch(alias pred, T)(in T[] as) { int lo = -1, hi = cast(int)(as.length); for (; lo + 1 < hi; ) { const mid = (lo + hi) >> 1; (unaryFun!pred(as[mid]) ? hi : lo) = mid; } return hi; }
int lowerBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a >= val)); }
int upperBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a > val)); }




void main() {
  try {
    for (; ; ) {
      const N = readInt;
      const Q = readInt;
      const S = readToken;
      
      auto fs = new int[N + 1];
      foreach (i; 0 .. N) fs[i + 1] = fs[i] + ((S[i] == 'R') ? 1 : 0);
      long get(long n) {
        const q = n / N;
        const r = n % N;
        return q * fs[N] + fs[r];
      }
      
      foreach (q; 0 .. Q) {
        const H = readLong;
        const W = readLong;
        const P = readInt;
        long lo = -1, hi = H + W;
        for (; lo + 1 < hi; ) {
          const mid = (lo + hi) / 2;
          const rig = get(P + mid) - get(P);
          const dow = mid - rig;
          ((dow >= H || rig >= W) ? hi : lo) = mid;
        }
        debug {
          writeln("hi = ", hi);
        }
        const ans = (P + hi) % N;
        writeln(ans);
      }
    }
  } catch (EOFException e) {
  }
}
0