結果
問題 | No.59 鉄道の旅 |
ユーザー | yaoshimax |
提出日時 | 2015-02-22 20:11:22 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 76 ms / 5,000 ms |
コード長 | 1,268 bytes |
コンパイル時間 | 716 ms |
コンパイル使用メモリ | 87,496 KB |
実行使用メモリ | 81,508 KB |
最終ジャッジ日時 | 2024-06-07 00:52:39 |
合計ジャッジ時間 | 2,488 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
81,508 KB |
testcase_01 | AC | 58 ms
81,280 KB |
testcase_02 | AC | 53 ms
81,392 KB |
testcase_03 | AC | 57 ms
81,408 KB |
testcase_04 | AC | 76 ms
81,280 KB |
testcase_05 | AC | 58 ms
81,280 KB |
testcase_06 | AC | 52 ms
81,496 KB |
testcase_07 | AC | 59 ms
81,408 KB |
testcase_08 | AC | 56 ms
81,400 KB |
testcase_09 | AC | 61 ms
81,280 KB |
testcase_10 | AC | 55 ms
81,408 KB |
testcase_11 | AC | 59 ms
81,280 KB |
testcase_12 | AC | 62 ms
81,436 KB |
testcase_13 | AC | 74 ms
81,408 KB |
testcase_14 | AC | 70 ms
81,408 KB |
testcase_15 | AC | 59 ms
81,408 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:56:9: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 56 | scanf("%d%d",&N,&K); | ~~~~~^~~~~~~~~~~~~~ main.cpp:61:12: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 61 | scanf("%d",&w); | ~~~~~^~~~~~~~~
ソースコード
#include <cstdio> #include <cstdlib> #include <cmath> #include <climits> #include <cfloat> #include <map> #include <utility> #include <set> #include <iostream> #include <memory> #include <string> #include <vector> #include <algorithm> #include <functional> #include <sstream> #include <complex> #include <stack> #include <queue> #include <cstring> using namespace std; class BIT{ /*binary indexed tree*/ private: vector<long long> data; int size; public: BIT(int n): data(n+1,0),size(n){ return; } long long sum(int l, int r ){ // return sum in [l+1,r] or (l,r] return sum_(r)-sum_(l); } long long sum_(int i){ // return sum (0, i] long long ans = 0; while( 0 < i ){ ans += data[i]; i -= i&-i; // 11010110 -> 1010100 } return ans; } void add(int i, int x){ // add x to i while( i <= size ){ data[i] += x; i+= i&-i; } return; } }; int main(){ int N,K; scanf("%d%d",&N,&K); BIT b(10000001); for( int i = 0 ; i < N; i++ ){ int w; scanf("%d",&w); if(w>0 && b.sum(w-1,1000000) < K){ b.add(w,1); } if(w<0 && b.sum(-w-1,-w) >0){ b.add(-w,-1); } } printf("%d\n",(int)b.sum_(1000000)); return 0; }