結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー 東前頭十一枚目東前頭十一枚目
提出日時 2020-03-18 15:54:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 660 bytes
コンパイル時間 1,571 ms
コンパイル使用メモリ 172,676 KB
実行使用メモリ 50,236 KB
最終ジャッジ日時 2024-05-08 02:31:33
合計ジャッジ時間 12,751 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
6,812 KB
testcase_01 AC 54 ms
7,424 KB
testcase_02 AC 10 ms
8,832 KB
testcase_03 AC 124 ms
14,460 KB
testcase_04 WA -
testcase_05 AC 22 ms
13,924 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 533 ms
48,828 KB
testcase_09 WA -
testcase_10 AC 349 ms
29,812 KB
testcase_11 AC 469 ms
42,908 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 279 ms
50,236 KB
testcase_18 AC 100 ms
28,792 KB
testcase_19 AC 220 ms
14,856 KB
testcase_20 WA -
testcase_21 AC 10 ms
6,940 KB
testcase_22 AC 12 ms
12,456 KB
testcase_23 WA -
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 3 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 WA -
testcase_28 AC 2 ms
6,944 KB
testcase_29 WA -
testcase_30 AC 2 ms
6,940 KB
testcase_31 WA -
testcase_32 AC 3 ms
6,940 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 335 ms
33,756 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 386 ms
33,156 KB
testcase_40 AC 430 ms
34,968 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 449 ms
35,848 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 20 ms
6,944 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 131 ms
12,988 KB
testcase_50 AC 188 ms
28,764 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 86 ms
22,008 KB
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 AC 2 ms
6,944 KB
testcase_59 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
	int n; cin >> n;
	vector<vector<int64_t>> hp(n, vector<int64_t>(n, 0));
	int num[n][n] = {};
	string s; cin >> s;
	int64_t a[n]; for(int i = 0; i < n; ++i) cin >> a[i];
	for(int l = 0; l < n; ++l) {
		int64_t sum = 0;
		int cnt = 0;
		for(int r = l; r < n; ++r) {
			sum += a[r];
			cnt += (s[r] == 'E');
			hp[l][r] = sum;
			num[l][r] = cnt;
		}
	}
	int q; cin >> q;
	while(q--) {
		int64_t k; cin >> k;
		int ans = 0;
		for(int l = 0; l < n; ++l) {
			int r = upper_bound(hp[l].begin(), hp[l].end(), k) - hp[l].begin() - 1;
			ans = max(ans, num[l][r]);
		}
		cout << ans << '\n';
	}
	return 0;
}
0