結果

問題 No.2276 I Want AC
ユーザー kabipoyokabipoyo
提出日時 2023-04-21 21:44:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,865 bytes
コンパイル時間 4,483 ms
コンパイル使用メモリ 263,912 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-06 15:14:12
合計ジャッジ時間 33,596 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 3 ms
6,816 KB
testcase_09 AC 3 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 255 ms
6,816 KB
testcase_12 AC 787 ms
6,820 KB
testcase_13 AC 244 ms
6,820 KB
testcase_14 AC 109 ms
6,820 KB
testcase_15 AC 421 ms
6,816 KB
testcase_16 AC 370 ms
6,820 KB
testcase_17 AC 729 ms
6,820 KB
testcase_18 AC 566 ms
6,820 KB
testcase_19 AC 20 ms
6,816 KB
testcase_20 AC 729 ms
6,820 KB
testcase_21 AC 314 ms
6,816 KB
testcase_22 AC 141 ms
6,816 KB
testcase_23 AC 885 ms
6,816 KB
testcase_24 AC 886 ms
6,820 KB
testcase_25 AC 881 ms
6,816 KB
testcase_26 AC 844 ms
6,816 KB
testcase_27 AC 908 ms
6,816 KB
testcase_28 AC 710 ms
6,816 KB
testcase_29 AC 609 ms
6,816 KB
testcase_30 AC 888 ms
6,816 KB
testcase_31 AC 498 ms
6,816 KB
testcase_32 AC 903 ms
6,816 KB
testcase_33 AC 897 ms
6,816 KB
testcase_34 AC 668 ms
6,816 KB
testcase_35 AC 300 ms
6,816 KB
testcase_36 AC 319 ms
6,816 KB
testcase_37 AC 281 ms
6,816 KB
testcase_38 AC 298 ms
6,820 KB
testcase_39 AC 298 ms
6,816 KB
testcase_40 AC 314 ms
6,820 KB
testcase_41 WA -
testcase_42 AC 279 ms
6,816 KB
testcase_43 AC 281 ms
6,816 KB
testcase_44 AC 750 ms
6,816 KB
testcase_45 AC 900 ms
6,820 KB
testcase_46 AC 886 ms
6,824 KB
testcase_47 AC 755 ms
6,816 KB
testcase_48 AC 754 ms
6,820 KB
testcase_49 AC 904 ms
6,820 KB
testcase_50 AC 910 ms
6,816 KB
testcase_51 AC 893 ms
6,820 KB
testcase_52 AC 897 ms
6,816 KB
testcase_53 AC 822 ms
6,816 KB
testcase_54 AC 472 ms
6,820 KB
testcase_55 AC 484 ms
6,816 KB
testcase_56 AC 399 ms
6,816 KB
testcase_57 AC 317 ms
6,816 KB
testcase_58 AC 360 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
typedef int64_t lint;
#define rep(i, n) for(int i=0; i<n; i++)
#define repx(i, l, n) for(int i=l; i<n; i++)
#define all(v) v.begin(), v.end()
#define show(x) cout << #x << ": " << x << endl;
#define list(x) cout << #x << ": " << x << "  ";
#define pb push_back
using vi = vector<lint>;
using vvi = vector<vector<lint>>;
template<class T> inline void vin(vector<T>& v) { rep(i, v.size()) cin >> v.at(i); }
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
template<class T> inline void drop(T x) { cout << x << endl; exit(0); }
template<class T> void vout(vector<T> v) { rep(i, v.size()) { cout << v.at(i) << ' '; } cout << endl; }
constexpr lint LINF = LLONG_MAX/2;

int main() {
	lint N;
	string S;
	cin >> N >> S;

	lint a=0, b=0, c=0, x, y, z;
	lint ng = -1, m1, m2, ok = N;
	while (abs(ok - ng) > 2) {
		m1 = (ok + ng*2) / 3;
		m2 = (ok*2 + ng) / 3;
		rep(_, 2) {
			string t;
			rep(i, N) {
				if (S[i] == '?') {
					if (i < m1) t += 'A';
					else t += 'C';
				} else {
					t += S[i];
				}
			}
			vi v(N);
			rep(i, N) {
				if (t[N-1-i] == 'C') v[N-1-i]++;
			}
			rep(i, N-1) v[N-2-i] += v[N-1-i];
			a = 0;
			rep(i, N) {
				if (t[i] == 'A') a += v[i];
			}
			swap(a, b);
			swap(m1, m2);
		}
		if (a < b) ng = m1;
		else ok = m2;
		chmax(c, a);
		chmax(c, b);
	}
	repx(j, ng-100, ok+100) {
		string t;
		rep(i, N) {
			if (S[i] == '?') {
				if (i < j) t += 'A';
				else t += 'C';
			} else {
				t += S[i];
			}
		}
		vi v(N);
		rep(i, N) {
			if (t[N-1-i] == 'C') v[N-1-i]++;
		}
		rep(i, N-1) v[N-2-i] += v[N-1-i];
		a = 0;
		rep(i, N) {
			if (t[i] == 'A') a += v[i];
		}
		chmax(c, a);
	}
	cout << c << endl;
}
0