結果

問題 No.59 鉄道の旅
ユーザー tentententen
提出日時 2020-11-27 17:09:33
言語 Java
(openjdk 23)
結果
AC  
実行時間 1,338 ms / 5,000 ms
コード長 970 bytes
コンパイル時間 3,542 ms
コンパイル使用メモリ 77,976 KB
実行使用メモリ 70,280 KB
最終ジャッジ日時 2024-07-23 21:38:06
合計ジャッジ時間 11,071 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,968 KB
testcase_01 AC 134 ms
53,780 KB
testcase_02 AC 140 ms
54,032 KB
testcase_03 AC 147 ms
54,040 KB
testcase_04 AC 799 ms
63,760 KB
testcase_05 AC 148 ms
54,124 KB
testcase_06 AC 152 ms
53,904 KB
testcase_07 AC 154 ms
53,936 KB
testcase_08 AC 286 ms
58,444 KB
testcase_09 AC 291 ms
58,244 KB
testcase_10 AC 289 ms
58,544 KB
testcase_11 AC 244 ms
57,684 KB
testcase_12 AC 554 ms
59,192 KB
testcase_13 AC 1,017 ms
68,652 KB
testcase_14 AC 1,338 ms
70,280 KB
testcase_15 AC 134 ms
53,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int k = sc.nextInt();
		ArrayList<Integer> list = new ArrayList<>();
		list.add(0);
		list.add(Integer.MAX_VALUE);
		for (int i = 0; i < n; i++) {
		    int x = sc.nextInt();
		    if (x > 0) {
		        int idx = getIdx(list, x);
		        if (list.size() - idx - 1 < k) {
		            list.add(idx, x);
		        }
		    } else {
		        int idx = getIdx(list, -x);
		        if (list.get(idx) == -x) {
		            list.remove(idx);
		        }
		    }
 		}
 		System.out.println(list.size() - 2);
	}
	
	static int getIdx(ArrayList<Integer> list, int x) {
	    int left = 0;
	    int right = list.size();
	    while (right - left > 1) {
	        int m = (left + right) / 2;
	        if (list.get(m)>= x) {
	            right = m;
	        } else {
	            left = m;
	        }
	    }
	    return right;
	}
}

0