結果
問題 | No.2716 Falcon Method |
ユーザー | tobbie |
提出日時 | 2024-05-05 13:48:10 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 815 bytes |
コンパイル時間 | 1,614 ms |
コンパイル使用メモリ | 169,556 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-05 13:48:20 |
合計ジャッジ時間 | 8,545 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | RE | - |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | AC | 4 ms
5,376 KB |
testcase_08 | AC | 4 ms
5,376 KB |
testcase_09 | AC | 4 ms
5,376 KB |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 211 ms
5,376 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | AC | 296 ms
5,376 KB |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | AC | 296 ms
5,376 KB |
testcase_28 | AC | 307 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for (int i = 0; i < (int)n; i++) int main() { int N, Q; cin >> N >> Q; string S; cin >> S; vector<int> h(N+1), w(N+1); rep(i, N) { if (S[i] == 'D') { h[i+1] = h[i] + 1; w[i+1] = w[i]; } if (S[i] == 'R') { h[i+1] = h[i]; w[i+1] = w[i] + 1; } } rep(j, Q) { int H, W, P; cin >> H >> W >> P; int h0 = (h[P % N] + H); int w0 = (w[P % N] + W); int nh = (h0 % h[N] == 0) ? (h0 / h[N] - 1) * N : (h0 / h[N]) * N; int nw = (w0 % w[N] == 0) ? (w0 / w[N] - 1) * N : (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; }