結果

問題 No.2716 Falcon Method
ユーザー startcppstartcpp
提出日時 2024-04-05 21:41:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 366 ms / 2,000 ms
コード長 806 bytes
コンパイル時間 641 ms
コンパイル使用メモリ 67,984 KB
実行使用メモリ 10,020 KB
最終ジャッジ日時 2024-10-01 01:55:50
合計ジャッジ時間 7,183 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 5 ms
6,816 KB
testcase_07 AC 4 ms
6,820 KB
testcase_08 AC 4 ms
6,820 KB
testcase_09 AC 4 ms
6,820 KB
testcase_10 AC 4 ms
6,820 KB
testcase_11 AC 352 ms
9,672 KB
testcase_12 AC 263 ms
9,604 KB
testcase_13 AC 199 ms
9,824 KB
testcase_14 AC 327 ms
8,776 KB
testcase_15 AC 222 ms
9,536 KB
testcase_16 AC 266 ms
9,032 KB
testcase_17 AC 308 ms
9,104 KB
testcase_18 AC 366 ms
9,228 KB
testcase_19 AC 270 ms
8,628 KB
testcase_20 AC 211 ms
9,388 KB
testcase_21 AC 277 ms
8,928 KB
testcase_22 AC 330 ms
10,004 KB
testcase_23 AC 344 ms
10,020 KB
testcase_24 AC 352 ms
10,008 KB
testcase_25 AC 2 ms
6,816 KB
testcase_26 AC 2 ms
6,816 KB
testcase_27 AC 366 ms
9,876 KB
testcase_28 AC 355 ms
10,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#define rep(i, n) for(i = 0; i < n; i++)
#define int long long
using namespace std;

int n, q;
string s;
int cntR[400001], cntD[400001];

int solve(int h, int w, int p) {
	int ng = 0, ok = 1e+10, mid;
	while (ok - ng >= 2) {
		mid = (ng + ok) / 2;
		int cR = (mid / n) * cntR[n] + cntR[p + mid % n] - cntR[p];
		int cD = (mid / n) * cntD[n] + cntD[p + mid % n] - cntD[p];
		if (cR >= w || cD >= h) {
			ok = mid;
		}
		else {
			ng = mid;
		}
	}
	return (p + ok) % n;
}

signed main() {
	int i;
	
	cin >> n >> q >> s;
	rep(i, 2 * n) cntR[i + 1] = cntR[i] + (s[i % n] == 'R');
	rep(i, 2 * n) cntD[i + 1] = cntD[i] + (s[i % n] == 'D');
	rep(i, q) {
		int h, w, p;
		cin >> h >> w >> p;
		int ans = solve(h, w, p);
		cout << ans << endl;
	}
	return 0;
}
0