結果

問題 No.59 鉄道の旅
ユーザー chocoruskchocorusk
提出日時 2019-01-13 10:37:49
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 48 ms / 5,000 ms
コード長 876 bytes
コンパイル時間 858 ms
コンパイル使用メモリ 94,572 KB
実行使用メモリ 11,208 KB
最終ジャッジ日時 2024-06-07 04:37:30
合計ジャッジ時間 1,819 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 48 ms
11,208 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 11 ms
11,208 KB
testcase_09 AC 12 ms
10,624 KB
testcase_10 AC 11 ms
9,984 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 16 ms
5,376 KB
testcase_13 AC 37 ms
5,376 KB
testcase_14 AC 36 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;
int bit[1000001], n0;
int ct[1000001];
int sum(int i){
	int s=0;
	while(i>0){
		s+=bit[i];
		i-=(i&(-i));
	}
	return s;
}
void add(int i, int x){
	while(i<=n0){
		bit[i]+=x;
		i+=(i&(-i));
	}
}
int main()
{
	int n, k; cin>>n>>k; n0=1000000; int tot=0;
	for(int i=0; i<n; i++){
		int w; cin>>w;
		if(w>0){
			if(tot-sum(w-1)<k){
				tot++; ct[w]++;
				add(w, 1);
			}
		}else{
			w=-w;
			if(ct[w]>0){
				tot--;
				ct[w]--;
				add(w, -1);
			}
		}
	}
	cout<<tot<<endl;
	return 0;
}
0