結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー ks2mks2m
提出日時 2019-11-29 22:33:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 647 ms / 2,000 ms
コード長 1,529 bytes
コンパイル時間 2,268 ms
コンパイル使用メモリ 78,800 KB
実行使用メモリ 45,112 KB
最終ジャッジ日時 2024-09-14 05:50:46
合計ジャッジ時間 12,330 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
38,892 KB
testcase_01 AC 136 ms
39,104 KB
testcase_02 AC 71 ms
37,532 KB
testcase_03 AC 127 ms
39,360 KB
testcase_04 AC 134 ms
39,820 KB
testcase_05 AC 83 ms
38,240 KB
testcase_06 AC 147 ms
39,948 KB
testcase_07 AC 141 ms
39,940 KB
testcase_08 AC 173 ms
40,628 KB
testcase_09 AC 151 ms
40,268 KB
testcase_10 AC 165 ms
40,124 KB
testcase_11 AC 182 ms
41,780 KB
testcase_12 AC 53 ms
37,064 KB
testcase_13 AC 53 ms
37,088 KB
testcase_14 AC 54 ms
36,964 KB
testcase_15 AC 53 ms
36,548 KB
testcase_16 AC 53 ms
36,664 KB
testcase_17 AC 647 ms
45,112 KB
testcase_18 AC 146 ms
40,020 KB
testcase_19 AC 168 ms
40,300 KB
testcase_20 AC 160 ms
40,248 KB
testcase_21 AC 111 ms
38,612 KB
testcase_22 AC 86 ms
38,848 KB
testcase_23 AC 64 ms
36,816 KB
testcase_24 AC 136 ms
41,432 KB
testcase_25 AC 131 ms
40,548 KB
testcase_26 AC 125 ms
41,824 KB
testcase_27 AC 84 ms
38,736 KB
testcase_28 AC 115 ms
40,908 KB
testcase_29 AC 120 ms
40,368 KB
testcase_30 AC 121 ms
40,972 KB
testcase_31 AC 120 ms
40,808 KB
testcase_32 AC 138 ms
41,948 KB
testcase_33 AC 152 ms
41,632 KB
testcase_34 AC 164 ms
40,296 KB
testcase_35 AC 166 ms
41,388 KB
testcase_36 AC 127 ms
39,724 KB
testcase_37 AC 166 ms
41,356 KB
testcase_38 AC 162 ms
40,120 KB
testcase_39 AC 184 ms
41,704 KB
testcase_40 AC 174 ms
41,768 KB
testcase_41 AC 183 ms
41,904 KB
testcase_42 AC 177 ms
41,540 KB
testcase_43 AC 184 ms
41,560 KB
testcase_44 AC 154 ms
39,708 KB
testcase_45 AC 176 ms
41,804 KB
testcase_46 AC 127 ms
38,796 KB
testcase_47 AC 158 ms
40,020 KB
testcase_48 AC 141 ms
40,912 KB
testcase_49 AC 151 ms
39,904 KB
testcase_50 AC 152 ms
41,284 KB
testcase_51 AC 170 ms
41,316 KB
testcase_52 AC 150 ms
40,120 KB
testcase_53 AC 170 ms
41,880 KB
testcase_54 AC 126 ms
41,040 KB
testcase_55 AC 82 ms
37,772 KB
testcase_56 AC 167 ms
41,432 KB
testcase_57 AC 145 ms
40,160 KB
testcase_58 AC 54 ms
37,068 KB
testcase_59 AC 55 ms
36,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.TreeMap;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		char[] s = br.readLine().toCharArray();
		String[] sa = br.readLine().split(" ");
		long[] a = new long[n + 1];
		for (int i = 0; i < n; i++) {
			a[i + 1] = Long.parseLong(sa[i]);
		}
		int q = Integer.parseInt(br.readLine());
		sa = br.readLine().split(" ");
		long[] k = new long[q];
		for (int i = 0; i < q; i++) {
			k[i] = Long.parseLong(sa[i]);
		}
		br.close();

		int[] e = new int[n + 1];
		for (int i = 0; i < n; i++) {
			e[i + 1] = e[i];
			if (s[i] == 'E') {
				e[i + 1]++;
			}
		}

		for (int i = 1; i < a.length; i++) {
			a[i] += a[i - 1];
		}

		TreeMap<Long, Integer> map = new TreeMap<>();
		map.put(0L, 0);
		for (int i = 0; i < n; i++) {
			for (int j = i + 1; j < n + 1; j++) {
				long b = a[j] - a[i];
				if (b > 1000000000) {
					break;
				}
				int c = e[j] - e[i];
				if (map.containsKey(b)) {
					map.put(b, Math.max(c, map.get(b)));
				} else {
					map.put(b, c);
				}
			}
		}
		Long[] arr = map.keySet().toArray(new Long[0]);
		int v = map.get(arr[0]);
		for (int i = 1; i < arr.length; i++) {
			int vi = map.get(arr[i]);
			if (vi > v) {
				v = vi;
			} else {
				map.remove(arr[i]);
			}
		}

		for (int i = 0; i < q; i++) {
			System.out.println(map.floorEntry(k[i]).getValue());
		}
	}
}
0