結果

問題 No.59 鉄道の旅
ユーザー kou6839kou6839
提出日時 2014-12-19 19:50:48
言語 Java
(openjdk 23)
結果
AC  
実行時間 710 ms / 5,000 ms
コード長 959 bytes
コンパイル時間 2,190 ms
コンパイル使用メモリ 77,204 KB
実行使用メモリ 56,244 KB
最終ジャッジ日時 2024-12-24 20:30:04
合計ジャッジ時間 8,005 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
48,920 KB
testcase_01 AC 118 ms
47,584 KB
testcase_02 AC 117 ms
48,008 KB
testcase_03 AC 141 ms
49,344 KB
testcase_04 AC 641 ms
56,100 KB
testcase_05 AC 142 ms
48,804 KB
testcase_06 AC 145 ms
49,008 KB
testcase_07 AC 147 ms
49,564 KB
testcase_08 AC 267 ms
54,036 KB
testcase_09 AC 282 ms
53,916 KB
testcase_10 AC 268 ms
55,156 KB
testcase_11 AC 259 ms
54,872 KB
testcase_12 AC 492 ms
55,708 KB
testcase_13 AC 710 ms
56,244 KB
testcase_14 AC 632 ms
55,640 KB
testcase_15 AC 145 ms
49,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.*;
import java.util.*;
 
class BIT{
	int[] bit=new int[1000001];
    void add(int a,int w){;
    	for(int x = a;x<=1000000;x+=(x&-x)) {
    		bit[x] += w;
    	}
    }
    int sum(int a){
    	int ret = 0;
    	for(int x = a;x>0;x -= x& -x) ret += bit[x];
    	return ret;
    }
}
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n= sc.nextInt();
        int k = sc.nextInt();
        BIT bit = new BIT();
        int[] aru = new int[1000001];
    	int ans=0;
        for(int i=0;i<n;i++){
        	int temp = sc.nextInt();
        	if(temp>0){
        		if( (bit.sum(1000000)-bit.sum(temp-1))<k){
        		bit.add(temp,1);
        		aru[temp]++;
        		ans++;
        		}
        	}else{
        		if(aru[-temp]>0) {
        			ans--;
        			aru[-temp]--;
        			bit.add(-temp,-1);
        		}
        	}
        }
        System.out.println(ans);
    }
}	
0