結果

問題 No.59 鉄道の旅
ユーザー ayame_pyayame_py
提出日時 2016-02-09 19:45:59
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 23 ms / 5,000 ms
コード長 997 bytes
コンパイル時間 1,374 ms
コンパイル使用メモリ 158,444 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-06-07 02:05:24
合計ジャッジ時間 2,200 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 23 ms
7,296 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 9 ms
7,296 KB
testcase_09 AC 8 ms
7,040 KB
testcase_10 AC 8 ms
6,912 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 9 ms
5,376 KB
testcase_13 AC 17 ms
5,376 KB
testcase_14 AC 16 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define REP(i,n) for(ll i=0; i<(ll)(n); i++)
#define FOR(i,n,m) for (ll i=n; i<(ll)(m); i++)
#define pb push_back
#define INF 1000000007
#define all(a) (a).begin(),(a).end()
#define MAX_N 1000010

//[1,n]
int n=MAX_N;
int bit[MAX_N+1];

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<=n){
        bit[i]+=x;
        i += i & -i;
    }
}


typedef long long ll;
typedef pair<int,int> p;

int dy[4]={-1,1,0,0};
int dx[4]={0,0,1,-1};


int N,K,t;
int main(){
    ios::sync_with_stdio(false);
    cin >> N >> K;
    REP(i,N){
        cin >> t;
        //つむ
        if(t>0){
            int tmp = sum(MAX_N)-sum(t-1);
            if(K<=tmp) continue;
            add(t,1);
        }
        //おろす
        else{
            t=-t;
            if(sum(t)-sum(t-1)>0) add(t,-1);
        }
    }
    
    cout << sum(MAX_N) << endl;
    
    
    return 0;
}
0