結果

問題 No.59 鉄道の旅
ユーザー なおなお
提出日時 2014-11-07 01:46:15
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 720 bytes
コンパイル時間 1,430 ms
コンパイル使用メモリ 160,408 KB
実行使用メモリ 7,148 KB
最終ジャッジ日時 2024-06-07 00:45:27
合計ジャッジ時間 2,318 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,972 KB
testcase_01 AC 4 ms
7,044 KB
testcase_02 AC 4 ms
7,040 KB
testcase_03 AC 3 ms
7,144 KB
testcase_04 AC 42 ms
6,980 KB
testcase_05 AC 4 ms
7,024 KB
testcase_06 AC 4 ms
7,044 KB
testcase_07 AC 4 ms
7,040 KB
testcase_08 AC 9 ms
7,096 KB
testcase_09 AC 8 ms
7,040 KB
testcase_10 AC 8 ms
6,996 KB
testcase_11 AC 5 ms
7,004 KB
testcase_12 AC 20 ms
7,008 KB
testcase_13 AC 40 ms
7,148 KB
testcase_14 AC 39 ms
7,040 KB
testcase_15 AC 4 ms
6,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

template<class _T>struct BIT{
    int N;vector<_T>bit;
    BIT(int n):bit(n+1){N=n;}
    void add(int i, _T v){for(int x=i;x<=N;x+=x&-x)bit[x]+=v;}
    _T sum(int i){_T r=0;for(int x=i;x>0;x-=x&-x)r+=bit[x];return r;}
    _T sum(int l,int r){return sum(r)-sum(l-1);}
};

int main(){
    const int MAX = 1000000;
    BIT<int> bit(MAX);
    int N, K; cin >> N >> K;
    REP(i,N){
        int W; cin >> W;
        if(W < 0){
            if(bit.sum(-W,-W) > 0) bit.add(-W,-1);
        } else {
            if(bit.sum(W,MAX) < K) bit.add(W,1);
        }
    }
    cout << bit.sum(MAX) << endl;
}
0