結果

問題 No.59 鉄道の旅
ユーザー 37zigen37zigen
提出日時 2016-05-16 01:16:08
言語 Java
(openjdk 23)
結果
AC  
実行時間 715 ms / 5,000 ms
コード長 983 bytes
コンパイル時間 2,650 ms
コンパイル使用メモリ 77,120 KB
実行使用メモリ 52,612 KB
最終ジャッジ日時 2024-12-24 22:19:50
合計ジャッジ時間 8,698 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
45,164 KB
testcase_01 AC 144 ms
45,276 KB
testcase_02 AC 145 ms
45,460 KB
testcase_03 AC 156 ms
45,568 KB
testcase_04 AC 715 ms
52,224 KB
testcase_05 AC 160 ms
45,400 KB
testcase_06 AC 165 ms
45,684 KB
testcase_07 AC 161 ms
45,324 KB
testcase_08 AC 306 ms
51,264 KB
testcase_09 AC 304 ms
50,904 KB
testcase_10 AC 300 ms
51,388 KB
testcase_11 AC 259 ms
50,092 KB
testcase_12 AC 637 ms
51,864 KB
testcase_13 AC 703 ms
52,180 KB
testcase_14 AC 616 ms
52,612 KB
testcase_15 AC 143 ms
45,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.util.Scanner;
public class Main{
	public static void main(String[] args){
		new Main().solve();
	}
	void solve(){
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();
		int k=sc.nextInt();
		FenwickTree ft=new FenwickTree(1_000_000);
		for(int i = 0; i < n; i++){
			int w=sc.nextInt();
			if(w>0){
				if(ft.sum(w, 1_000_000)>=k)continue;
				else{
					ft.add(w, 1);
				}
			}else if(w<0){
				if(ft.sum(-w, -w)>0){
					ft.add(-w, -1);
				}
			}
		}
		System.out.println(ft.sum(1_000_000));
	}
	class FenwickTree{
		int[] bit;
		int n;

		public FenwickTree(int n){
			this.n = n;
			bit = new int[n + 1];
		}

		//xにiを加える。
		void add(int i, int x)
		{
			while(i <= n){
				bit[i] += x;
				i += i & -i;
			}
		}
		//iまでの和を求める。
		int sum(int i)
		{
			int sum = 0;
			while(i > 0){
				sum += bit[i];
				i -= i & -i;
			}
			return sum;
		}
		int sum(int l, int r)
		{
			return sum(r) - sum(l - 1);
		}
	}
}
0