結果
問題 | No.59 鉄道の旅 |
ユーザー | kosakkun |
提出日時 | 2016-12-14 00:48:29 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 47 ms / 5,000 ms |
コード長 | 1,615 bytes |
コンパイル時間 | 1,261 ms |
コンパイル使用メモリ | 95,252 KB |
実行使用メモリ | 15,104 KB |
最終ジャッジ日時 | 2024-06-07 03:13:17 |
合計ジャッジ時間 | 1,689 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 7 ms
11,136 KB |
testcase_01 | AC | 7 ms
11,136 KB |
testcase_02 | AC | 7 ms
11,008 KB |
testcase_03 | AC | 7 ms
11,008 KB |
testcase_04 | AC | 47 ms
15,104 KB |
testcase_05 | AC | 7 ms
11,008 KB |
testcase_06 | AC | 8 ms
11,008 KB |
testcase_07 | AC | 7 ms
11,008 KB |
testcase_08 | AC | 14 ms
14,976 KB |
testcase_09 | AC | 15 ms
14,592 KB |
testcase_10 | AC | 15 ms
14,464 KB |
testcase_11 | AC | 9 ms
11,136 KB |
testcase_12 | AC | 22 ms
11,008 KB |
testcase_13 | AC | 41 ms
11,264 KB |
testcase_14 | AC | 41 ms
11,392 KB |
testcase_15 | AC | 7 ms
11,008 KB |
ソースコード
#include <iostream> #include <string> #include <vector> #include <queue> #include <stack> #include <map> #include <algorithm> #include <sstream> #include <cmath> #include <set> #include <iomanip> #include <deque> using namespace std; typedef long long ll; #define REP(i,n) for(int (i)=0;(i)<(int)(n);(i)++) #define RREP(i,n) for(int (i)=(int)(n)-1;i>=0;i--) #define FOREACH(i,Itr) for(auto (i)=(Itr).begin();(i)!=(Itr).end();(i)++) #define REMOVE(Itr,n) (Itr).erase(remove((Itr).begin(),(Itr).end(),n),(Itr).end()) #define UNIQUE(Itr) sort((Itr).begin(),(Itr).end()); (Itr).erase(unique((Itr).begin(),(Itr).end()),(Itr).end()) #define LBOUND(Itr,val) lower_bound((Itr).begin(),(Itr).end(),(val)) #define UBOUND(Itr,val) upper_bound((Itr).begin(),(Itr).end(),(val)) template <class T> class FenwickTree{ vector<T> bit_sum; int size; public: FenwickTree(int _size){ size=_size+1; bit_sum = *new vector<T>(size,0); } void add(int i, T x){ while(i<size){ bit_sum[i] += x; i+=i&-i; } } T getsum(int i){ T res=0; while(i>0) { res+=bit_sum[i]; i-=i&-i; } return res; } }; int wcnt[1000010]; FenwickTree<int> inst(1000010); int main(){ int N,K; cin>>N>>K; REP(i,N){ int w; cin>>w; if(w<0){ if(wcnt[abs(w)]>0){ wcnt[abs(w)]--; inst.add(abs(w),-1); } }else{ int sum=inst.getsum(1000010)-inst.getsum(abs(w)-1); if(sum<K){ wcnt[abs(w)]++; inst.add(abs(w),1); } } } cout<<inst.getsum(1000010)<<endl; return 0; }