結果

問題 No.1725 [Cherry 3rd Tune D] 無言の言葉
ユーザー tatyamtatyam
提出日時 2021-10-29 23:30:43
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 211 ms / 4,000 ms
コード長 964 bytes
コンパイル時間 3,210 ms
コンパイル使用メモリ 254,608 KB
実行使用メモリ 50,468 KB
最終ジャッジ日時 2024-10-07 13:04:21
合計ジャッジ時間 9,041 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 3 ms
6,820 KB
testcase_03 AC 5 ms
6,820 KB
testcase_04 AC 3 ms
6,820 KB
testcase_05 AC 3 ms
6,816 KB
testcase_06 AC 13 ms
6,820 KB
testcase_07 AC 6 ms
6,820 KB
testcase_08 AC 10 ms
6,820 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 6 ms
6,820 KB
testcase_11 AC 3 ms
6,816 KB
testcase_12 AC 15 ms
6,816 KB
testcase_13 AC 15 ms
6,816 KB
testcase_14 AC 109 ms
6,816 KB
testcase_15 AC 17 ms
6,816 KB
testcase_16 AC 25 ms
6,912 KB
testcase_17 AC 45 ms
7,296 KB
testcase_18 AC 130 ms
6,816 KB
testcase_19 AC 35 ms
6,820 KB
testcase_20 AC 14 ms
6,816 KB
testcase_21 AC 116 ms
6,816 KB
testcase_22 AC 137 ms
18,268 KB
testcase_23 AC 137 ms
16,660 KB
testcase_24 AC 92 ms
13,124 KB
testcase_25 AC 167 ms
26,684 KB
testcase_26 AC 131 ms
21,520 KB
testcase_27 AC 122 ms
30,048 KB
testcase_28 AC 186 ms
28,620 KB
testcase_29 AC 176 ms
27,472 KB
testcase_30 AC 160 ms
32,604 KB
testcase_31 AC 104 ms
16,664 KB
testcase_32 AC 211 ms
43,652 KB
testcase_33 AC 205 ms
45,200 KB
testcase_34 AC 200 ms
41,728 KB
testcase_35 AC 200 ms
37,356 KB
testcase_36 AC 201 ms
40,952 KB
testcase_37 AC 147 ms
6,816 KB
testcase_38 AC 150 ms
6,820 KB
testcase_39 AC 147 ms
6,816 KB
testcase_40 AC 153 ms
6,820 KB
testcase_41 AC 151 ms
6,820 KB
testcase_42 AC 2 ms
6,820 KB
testcase_43 AC 55 ms
50,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using i64 = int64_t;
using A = valarray<i64>;

int main(){
	string X, Y;
	cin >> X >> Y;
	A countX(i64{}, 27), countY(i64{}, 27);
	vector<A> accX = {countX}, accY = {countY};
	for(char& c : X){
		countX[c -= 'a']++;
		countX[26]++;
		accX.push_back(countX);
	}
	for(char& c : Y){
		countY[c -= 'a']++;
		countY[26]++;
		accY.push_back(countY);
	}
	vector<A> countF = {countX};
	for(i64 i = 0; i < 30; i++) countF.push_back(countF.back() * 2 + countY);
	function<i64(i64, i64, char)> count = [&](i64 N, i64 R, char C){
		if(N == 0) return accX[R][C];
		if(R < countF[N - 1][26]) return count(N - 1, R, C);
		if(R > countF[N - 1][26] + Y.size()) return countF[N][C] - count(N - 1, countF[N][26] - R, C);
		return countF[N - 1][C] + accY[R - countF[N - 1][26]][C];
	};
	i64 Q;
	cin >> Q;
	while(Q--){
		i64 L, R;
		char C;
		cin >> L >> R >> C;
		L--;
		C -= 'a';
		cout << count(30, R, C) - count(30, L, C) << '\n';
	}
}
0