結果

問題 No.2281 K → K-1 01 Flip
ユーザー magstamagsta
提出日時 2023-04-20 10:12:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 563 ms / 2,000 ms
コード長 2,662 bytes
コンパイル時間 1,869 ms
コンパイル使用メモリ 177,352 KB
実行使用メモリ 14,384 KB
最終ジャッジ日時 2024-10-15 10:37:38
合計ジャッジ時間 25,281 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 48 ms
10,132 KB
testcase_02 AC 462 ms
8,644 KB
testcase_03 AC 475 ms
13,108 KB
testcase_04 AC 118 ms
5,892 KB
testcase_05 AC 197 ms
10,020 KB
testcase_06 AC 398 ms
8,636 KB
testcase_07 AC 101 ms
13,096 KB
testcase_08 AC 294 ms
13,120 KB
testcase_09 AC 458 ms
6,360 KB
testcase_10 AC 348 ms
6,704 KB
testcase_11 AC 139 ms
7,260 KB
testcase_12 AC 116 ms
12,192 KB
testcase_13 AC 448 ms
6,652 KB
testcase_14 AC 235 ms
10,272 KB
testcase_15 AC 115 ms
5,248 KB
testcase_16 AC 472 ms
9,096 KB
testcase_17 AC 521 ms
10,144 KB
testcase_18 AC 487 ms
7,712 KB
testcase_19 AC 217 ms
11,880 KB
testcase_20 AC 137 ms
6,032 KB
testcase_21 AC 159 ms
8,600 KB
testcase_22 AC 436 ms
6,104 KB
testcase_23 AC 24 ms
5,248 KB
testcase_24 AC 262 ms
5,248 KB
testcase_25 AC 171 ms
5,248 KB
testcase_26 AC 154 ms
9,692 KB
testcase_27 AC 331 ms
12,956 KB
testcase_28 AC 142 ms
12,220 KB
testcase_29 AC 9 ms
5,248 KB
testcase_30 AC 285 ms
5,248 KB
testcase_31 AC 272 ms
8,088 KB
testcase_32 AC 371 ms
9,616 KB
testcase_33 AC 208 ms
8,840 KB
testcase_34 AC 335 ms
5,248 KB
testcase_35 AC 239 ms
12,408 KB
testcase_36 AC 395 ms
5,248 KB
testcase_37 AC 399 ms
8,036 KB
testcase_38 AC 415 ms
5,248 KB
testcase_39 AC 199 ms
5,248 KB
testcase_40 AC 67 ms
8,984 KB
testcase_41 AC 522 ms
11,564 KB
testcase_42 AC 540 ms
12,852 KB
testcase_43 AC 540 ms
11,824 KB
testcase_44 AC 550 ms
14,256 KB
testcase_45 AC 551 ms
12,976 KB
testcase_46 AC 482 ms
9,088 KB
testcase_47 AC 531 ms
11,440 KB
testcase_48 AC 529 ms
10,928 KB
testcase_49 AC 563 ms
14,384 KB
testcase_50 AC 516 ms
10,796 KB
testcase_51 AC 463 ms
8,192 KB
testcase_52 AC 466 ms
8,320 KB
testcase_53 AC 451 ms
8,192 KB
testcase_54 AC 453 ms
8,192 KB
testcase_55 AC 459 ms
8,192 KB
testcase_56 AC 466 ms
8,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

template <typename T>
struct SegTree {
	const T INF = 0;
	int n;
	vector<T> dat;
	SegTree(int n_) : dat(n_ * 4, INF) {
		int x = 1;
		while (n_ > x) {
			x *= 2;
		}
		n = x;
	}
	void init(T x) {
		for (int i = 0; i < 2 * n - 1; i++) dat[i] = x;
	}
	void update(int i, T x) {
		i += n - 1;
		dat[i] = x;
		while (i > 0) {
			i = (i - 1) / 2;
			dat[i] = max(dat[i * 2 + 1], dat[i * 2 + 2]);
		}
	}
	T query(int a, int b) {
		return query_sub(a, b, 0, 0, n);
	}
	T query_sub(int a, int b, int k, int l, int r) {
		if (r <= a || b <= l) {
			return INF;
		}
		else if (a <= l && r <= b) {
			return dat[k];
		}
		else {
			T vl = query_sub(a, b, k * 2 + 1, l, (l + r) / 2);
			T vr = query_sub(a, b, k * 2 + 2, (l + r) / 2, r);
			return max(vl, vr);
		}
	}
};

int main() {
	long long N, Q; cin >> N >> Q;
	string S; cin >> S;

	vector<pair<long long, long long>> rle;
	vector<long long> a(N);
	vector<long long> left;
	for (int i = 0; i < N; i++) {
		if (i == 0) {
			if (S[i] == '0') rle.push_back(make_pair(0, 1));
			if (S[i] == '1') rle.push_back(make_pair(1, 1));
		}
		else {
			if (rle[rle.size() - 1].first == 0 && S[i] == '0') rle[rle.size() - 1].second++;
			else if (rle[rle.size() - 1].first == 1 && S[i] == '0') rle.push_back(make_pair(0, 1));
			else if (rle[rle.size() - 1].first == 0 && S[i] == '1') rle.push_back(make_pair(1, 1));
			else if (rle[rle.size() - 1].first == 1 && S[i] == '1') rle[rle.size() - 1].second++;
		}
		a[i] = rle.size() - 1;
		if (rle[rle.size() - 1].second == 1) left.push_back(i);
	}

	SegTree<long long> seg(rle.size());
	for (int i = 0; i < rle.size(); i++) {
		seg.update(i, rle[i].second);
	}

	vector<long long> rui_l(N, 0), rui_r(N, 0);
	for (int i = 0; i < N; i++) {
		if (i != 0) rui_l[i] = rui_l[i - 1];
		if (S[i] == '0') rui_l[i] += 1;
		else rui_l[i] -= 1;
		if (i != 0) rui_r[N - i - 1] = rui_r[N - i];
		if (S[N - i - 1] == '0') rui_r[N - i - 1] += 1;
		else rui_r[N - i - 1] -= 1;
	}

	for (int i = 0; i < Q; i++) {
		long long L, R, K; cin >> L >> R >> K;
		
		long long max_ = 0;
		if (a[R - 1] > a[L - 1] + 1) max_ = seg.query(a[L - 1] + 1, a[R - 1]);
		if (a[L - 1] + 1 < rle.size()) max_ = max(max_, left[a[L - 1] + 1] - (L - 1));
		max_ = max(max_, (R - 1) - left[a[R - 1]] + 1);
		
		if (max_ < K) cout << R - L + 1 << endl;
		else {
			long long sum = rui_l[N - 1];
			if (L != 1) sum -= rui_l[L - 2];
			if (R != N) sum -= rui_r[R];
			long long amari = (sum + 1000000 * (2 * K - 1)) % (2 * K - 1);
			if (amari == 0) cout << 2 * (K - 1) << endl;
			else if (amari < K) cout << 2 * K - 2 - amari << endl;
			else cout << amari - 1 << endl;
		}
	}
}
0