結果

問題 No.59 鉄道の旅
ユーザー TAISA_TAISA_
提出日時 2018-06-01 12:49:51
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 39 ms / 5,000 ms
コード長 975 bytes
コンパイル時間 1,270 ms
コンパイル使用メモリ 160,684 KB
実行使用メモリ 7,560 KB
最終ジャッジ日時 2024-06-30 08:48:33
合計ジャッジ時間 2,112 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,504 KB
testcase_01 AC 4 ms
7,328 KB
testcase_02 AC 4 ms
7,388 KB
testcase_03 AC 4 ms
7,524 KB
testcase_04 AC 39 ms
7,560 KB
testcase_05 AC 4 ms
7,380 KB
testcase_06 AC 4 ms
7,408 KB
testcase_07 AC 4 ms
7,396 KB
testcase_08 AC 7 ms
7,352 KB
testcase_09 AC 8 ms
7,428 KB
testcase_10 AC 8 ms
7,368 KB
testcase_11 AC 6 ms
7,320 KB
testcase_12 AC 20 ms
7,348 KB
testcase_13 AC 39 ms
7,472 KB
testcase_14 AC 38 ms
7,544 KB
testcase_15 AC 4 ms
7,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef pair<int,int> P;
const ll MOD=1000000007;
const ll INF=1000000010;
const ll LINF=4000000000000000010LL;
const int MAX=310;
const double EPS=1e-9;
int dx[4]={0,1,0,-1};
int dy[4]={1,0,-1,0};
struct BinaryIndexedTree{
    vector<int> bit;
    BinaryIndexedTree(int siz){
        bit.assign(++siz,0);
    }

    int sum(int k){
        int ret=0;
        for(++k;k>0;k-=k&-k){
            ret+=bit[k];
        }
        return ret;
    }

    void add(int k,int x){
        for(++k;k<(int)bit.size();k+=k&-k){
            bit[k]+=x;
        }
    }
};

int main(){
	int n,k;cin>>n>>k;
	int w[100010];
	BinaryIndexedTree bit(1000010);
	for(int i=0;i<n;i++){
		cin>>w[i];
	}
	for(int i=0;i<n;i++){
		if(w[i]<0){
			if(bit.sum(-w[i])-bit.sum(-w[i]-1)!=0)bit.add(-w[i],-1);
		}else{
			if(bit.sum(1000001)-bit.sum(w[i]-1)<k){
				bit.add(w[i],1);
			}
		}
	}
	cout<<bit.sum(1000001)<<endl;
	return 0;
}
0