結果

問題 No.871 かえるのうた
ユーザー k_6101k_6101
提出日時 2019-12-07 17:20:30
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,658 bytes
コンパイル時間 2,559 ms
コンパイル使用メモリ 82,908 KB
実行使用メモリ 73,828 KB
最終ジャッジ日時 2024-06-07 17:15:44
合計ジャッジ時間 27,833 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,256 KB
testcase_01 WA -
testcase_02 AC 129 ms
41,456 KB
testcase_03 AC 136 ms
41,256 KB
testcase_04 WA -
testcase_05 AC 135 ms
41,284 KB
testcase_06 WA -
testcase_07 AC 136 ms
41,232 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 192 ms
42,964 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 1,255 ms
64,552 KB
testcase_15 WA -
testcase_16 AC 1,088 ms
62,100 KB
testcase_17 AC 975 ms
62,604 KB
testcase_18 AC 435 ms
48,900 KB
testcase_19 WA -
testcase_20 AC 283 ms
48,108 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 135 ms
41,472 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 130 ms
41,332 KB
testcase_29 AC 736 ms
50,928 KB
testcase_30 WA -
testcase_31 AC 220 ms
45,400 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 491 ms
51,328 KB
testcase_35 WA -
testcase_36 AC 876 ms
57,248 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 711 ms
53,648 KB
testcase_41 AC 126 ms
41,296 KB
testcase_42 AC 626 ms
52,824 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 126 ms
41,552 KB
testcase_47 AC 125 ms
41,480 KB
testcase_48 AC 129 ms
41,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.InputStream;
import java.io.PrintWriter;
import java.lang.reflect.Array;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.PriorityQueue;
import java.util.Scanner;
import java.util.Set;
import java.util.Stack;
import java.util.TreeMap;
import java.util.TreeSet;

import static java.util.Comparator.*;

public class Main {
    public static void main(String[] args) {
        PrintWriter out = new PrintWriter(System.out);
        Solver solver = new Solver(System.in, out);
        solver.solve();
        out.close();
    }
}
class Solver {
	Scanner sc;
	PrintWriter out;
    public Solver(InputStream in, PrintWriter out) {
    	sc = new Scanner(in);
    	this.out = out;
    }
    // ==================================================================
    TreeMap<Long, Long> map = new TreeMap<>();
    public void solve() {
    	int N = Integer.parseInt(sc.next());
    	int K = Integer.parseInt(sc.next());
    	long[] X = new long[N];
    	long[] A = new long[N];
    	for (int i = 0; i < N; i++) {
			X[i] = Long.parseLong(sc.next());
		}
    	for (int i = 0; i < N; i++) {
			A[i] = Long.parseLong(sc.next());
		}
    	for (int i = 0; i < N; i++) {
    		map.put(X[i], A[i]);
    	}
    	long min = X[K-1];
    	long lkey = X[K-1] - A[K-1] - 1;
    	Entry<Long, Long> low;
    	while(true) {
    		low = map.higherEntry(lkey);
    		if(low == null || low.getKey() == min)		break;
//    		out.println(" low : min = " + min + "  lkey = " + lkey 
//    				+ "  X = " + low.getKey() + "  A = " + low.getValue());
    		min = low.getKey();
    		lkey = low.getKey() - low.getValue() - 1;
    	}
    	long max = X[K-1];
    	long rkey = X[K-1] + A[K-1] + 1;
    	Entry<Long, Long> high;
    	while(true) {
    		high = map.lowerEntry(rkey);
    		if(high == null || high.getKey() == max)	break;
//    		out.println(" high : max = " + max + "  rkey = " + rkey
//    				+ "  X = " + low.getKey() + "  A = " + low.getValue());
    		max = high.getKey();
    		rkey = high.getKey() + high.getValue() + 1;
    	}
    	int ans = 0;
    	for (int i = 0; i < N; i++) {
			if(X[i] >= min && X[i] <= max)	ans++;
			if(X[i] > max)	break;
		}
    	out.println(ans);
    }
    
    class PP{
    	public int key, val;
    	public PP(int key, int val) {
    		this.key = key;
    		this.val = val;
    	}
		public int getKey() {
			return key;
		}
		public void setKey(int key) {
			this.key = key;
		}
		public int getVal() {
			return val;
		}
		public void setVal(int val) {
			this.val = val;
		}
    }
}
0