結果

問題 No.59 鉄道の旅
ユーザー BantakoBantako
提出日時 2019-01-09 20:51:52
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 87 ms / 5,000 ms
コード長 986 bytes
コンパイル時間 2,857 ms
コンパイル使用メモリ 176,140 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-11-24 00:59:55
合計ジャッジ時間 3,295 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
7,168 KB
testcase_01 AC 5 ms
7,168 KB
testcase_02 AC 5 ms
7,040 KB
testcase_03 AC 5 ms
7,168 KB
testcase_04 AC 87 ms
11,136 KB
testcase_05 AC 5 ms
7,168 KB
testcase_06 AC 5 ms
7,040 KB
testcase_07 AC 6 ms
7,296 KB
testcase_08 AC 11 ms
7,552 KB
testcase_09 AC 11 ms
7,552 KB
testcase_10 AC 11 ms
7,296 KB
testcase_11 AC 6 ms
7,168 KB
testcase_12 AC 20 ms
7,296 KB
testcase_13 AC 59 ms
11,008 KB
testcase_14 AC 62 ms
11,776 KB
testcase_15 AC 6 ms
7,168 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:20:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   20 | main(){
      | ^~~~

ソースコード

diff #

#include<bits/stdc++.h>
#define rep(i,a,b) for(int i=int(a);i<int(b);++i)
using namespace std;
typedef long long ll;
int INF = (1LL << 30) - 1;
int MOD = 1e9+7;
struct BinaryIndexedTree{
   int N;
   std::vector<int> bit; //1-indexed
   BinaryIndexedTree(int n): N(n), bit(n+1, 0){}
   void add(int a, int w){
       for(int x = a; x <=N; x+=x&(-x)) bit[x] += w;
    }
   int sum(int a){ //1~aまでsum
        int ret = 0;
        for(int x = a; x>0; x-=x&(-x)) ret += bit[x];
        return ret;
    }
};
main(){
    int N,K;
    cin >> N >> K;
    int max_w = 1000000;
    BinaryIndexedTree bit(max_w);
    map<int,int> mp;
    rep(i,0,N){
        int w;
        cin >> w;
        if(w > 0){
            int cnt = bit.sum(max_w) - bit.sum(w-1);
            if(cnt >= K)continue;
            mp[w]++;
            bit.add(w, 1);
        }else{
            if(mp[-w] == 0)continue;
            mp[-w]--;
            bit.add(-w, -1);
        }
    }
    cout << bit.sum(max_w) << endl;
}
0