結果

問題 No.59 鉄道の旅
ユーザー なおなお
提出日時 2014-11-07 00:49:01
言語 C++11
(gcc 13.3.0)
結果
TLE  
実行時間 -
コード長 626 bytes
コンパイル時間 1,330 ms
コンパイル使用メモリ 160,360 KB
実行使用メモリ 13,632 KB
最終ジャッジ日時 2024-12-24 20:16:52
合計ジャッジ時間 15,330 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
8,448 KB
testcase_01 TLE -
testcase_02 AC 2 ms
6,820 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 2 ms
5,248 KB
testcase_06 RE -
testcase_07 TLE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 18 ms
5,248 KB
testcase_13 RE -
testcase_14 AC 38 ms
5,248 KB
testcase_15 AC 2 ms
9,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define REP(i, n)           for(int(i)=0;(i)<(n);++(i))

const int MAX = 1000000;
int bit[MAX+1];
void add(int a, int w){for(int x=a;x<=MAX;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;}
int rangesum(int l,int r){return sum(r)-sum(l-1);}

int main(){
    int N, K; cin >> N >> K;
    REP(i,N){
        int W; cin >> W;
        if(W < 0){
            if(rangesum(-W,-W) > 0) add(W,-1);
        } else {
            if(rangesum(W,MAX) < K) add(W,1);
        }
    }
    cout << sum(MAX) << endl;
    return 0;
}
0