結果

問題 No.59 鉄道の旅
ユーザー kou6839kou6839
提出日時 2014-12-19 19:41:36
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 933 bytes
コンパイル時間 2,285 ms
コンパイル使用メモリ 77,180 KB
実行使用メモリ 61,876 KB
最終ジャッジ日時 2024-06-07 00:51:42
合計ジャッジ時間 8,100 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
53,808 KB
testcase_01 AC 148 ms
53,696 KB
testcase_02 AC 149 ms
53,560 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 157 ms
53,836 KB
testcase_06 WA -
testcase_07 AC 160 ms
53,824 KB
testcase_08 AC 297 ms
60,856 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 267 ms
60,940 KB
testcase_12 AC 576 ms
61,676 KB
testcase_13 AC 657 ms
61,876 KB
testcase_14 AC 602 ms
61,544 KB
testcase_15 AC 148 ms
53,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.*;
import java.util.*;
 
class BIT{
	int[] bit=new int[2000001];
    void add(int a,int w){;
    	for(int x = a;x<=2000000;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(2000000)-bit.sum(temp-1))>=k) continue;
        		bit.add(temp,1);
        		aru[temp]++;
        		ans++;
        	}else{
        		if(aru[-temp]>0) {
        			ans--;
        			bit.add(-temp,-1);
        		}
        	}
        }
        System.out.println(ans);
    }
}		
0