結果

問題 No.59 鉄道の旅
ユーザー kou6839kou6839
提出日時 2014-12-19 19:50:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 620 ms / 5,000 ms
コード長 959 bytes
コンパイル時間 2,471 ms
コンパイル使用メモリ 77,108 KB
実行使用メモリ 55,764 KB
最終ジャッジ日時 2024-06-07 00:52:13
合計ジャッジ時間 7,114 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
48,872 KB
testcase_01 AC 127 ms
48,752 KB
testcase_02 AC 125 ms
49,012 KB
testcase_03 AC 122 ms
48,256 KB
testcase_04 AC 620 ms
55,668 KB
testcase_05 AC 136 ms
48,968 KB
testcase_06 AC 144 ms
49,352 KB
testcase_07 AC 137 ms
49,208 KB
testcase_08 AC 258 ms
54,652 KB
testcase_09 AC 262 ms
54,536 KB
testcase_10 AC 276 ms
55,116 KB
testcase_11 AC 226 ms
53,796 KB
testcase_12 AC 534 ms
55,620 KB
testcase_13 AC 599 ms
55,764 KB
testcase_14 AC 532 ms
55,500 KB
testcase_15 AC 126 ms
48,776 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