結果

問題 No.871 かえるのうた
ユーザー ks2mks2m
提出日時 2019-08-30 21:49:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,135 ms / 2,000 ms
コード長 1,303 bytes
コンパイル時間 2,226 ms
コンパイル使用メモリ 78,176 KB
実行使用メモリ 144,032 KB
最終ジャッジ日時 2024-11-30 10:46:23
合計ジャッジ時間 11,840 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
50,312 KB
testcase_01 AC 50 ms
50,052 KB
testcase_02 AC 50 ms
50,216 KB
testcase_03 AC 51 ms
50,348 KB
testcase_04 AC 50 ms
50,296 KB
testcase_05 AC 51 ms
50,344 KB
testcase_06 AC 49 ms
50,148 KB
testcase_07 AC 49 ms
50,200 KB
testcase_08 AC 72 ms
51,584 KB
testcase_09 AC 88 ms
51,584 KB
testcase_10 AC 55 ms
50,276 KB
testcase_11 AC 63 ms
51,088 KB
testcase_12 AC 154 ms
57,244 KB
testcase_13 AC 98 ms
52,148 KB
testcase_14 AC 331 ms
70,456 KB
testcase_15 AC 366 ms
70,284 KB
testcase_16 AC 1,135 ms
144,032 KB
testcase_17 AC 342 ms
68,992 KB
testcase_18 AC 150 ms
57,828 KB
testcase_19 AC 367 ms
70,220 KB
testcase_20 AC 168 ms
57,628 KB
testcase_21 AC 242 ms
60,736 KB
testcase_22 AC 50 ms
50,396 KB
testcase_23 AC 51 ms
49,912 KB
testcase_24 AC 48 ms
50,048 KB
testcase_25 AC 77 ms
51,272 KB
testcase_26 AC 130 ms
54,600 KB
testcase_27 AC 123 ms
54,196 KB
testcase_28 AC 50 ms
50,048 KB
testcase_29 AC 220 ms
62,432 KB
testcase_30 AC 314 ms
64,152 KB
testcase_31 AC 91 ms
51,808 KB
testcase_32 AC 275 ms
63,584 KB
testcase_33 AC 281 ms
63,576 KB
testcase_34 AC 158 ms
55,020 KB
testcase_35 AC 256 ms
62,880 KB
testcase_36 AC 313 ms
65,540 KB
testcase_37 AC 270 ms
60,600 KB
testcase_38 AC 441 ms
66,804 KB
testcase_39 AC 374 ms
64,928 KB
testcase_40 AC 213 ms
62,448 KB
testcase_41 AC 49 ms
50,328 KB
testcase_42 AC 219 ms
62,800 KB
testcase_43 AC 48 ms
50,116 KB
testcase_44 AC 50 ms
50,292 KB
testcase_45 AC 74 ms
51,020 KB
testcase_46 AC 49 ms
50,304 KB
testcase_47 AC 48 ms
50,296 KB
testcase_48 AC 49 ms
50,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.ArrayDeque;
import java.util.Queue;

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

		Queue<Integer> que = new ArrayDeque<>();
		que.add(k);
		boolean[] flg = new boolean[n];
		flg[k] = true;
		long min = x[k];
		long max = x[k];
		while (!que.isEmpty()) {
			int cur = que.poll();
			long l = x[cur] - a[cur];
			if (l < min) {
				min = l;
				for (int i = cur - 1; i >= 0 && l <= x[i]; i--) {
					flg[i] = true;
					que.add(i);
				}
			}
			long r = x[cur] + a[cur];
			if (max < r) {
				max = r;
				for (int i = cur + 1; i < n && x[i] <= r; i++) {
					flg[i] = true;
					que.add(i);
				}
			}
		}

		int ans = 0;
		for (int i = 0; i < n; i++) {
			if (flg[i]) {
				ans++;
			}
		}
		System.out.println(ans);
	}
}
0