結果

問題 No.59 鉄道の旅
ユーザー h_nosonh_noson
提出日時 2016-04-06 19:53:30
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 1,098 bytes
コンパイル時間 531 ms
コンパイル使用メモリ 64,672 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-26 06:55:26
合計ジャッジ時間 2,892 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 3 ms
4,376 KB
testcase_12 AC 15 ms
4,376 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
using namespace std;

#define RREP(i,s,e) for (i = s; i >= e; i--)
#define rrep(i,n) RREP(i,n,0)
#define REP(i,s,e) for (i = s; i < e; i++)
#define rep(i,n) REP(i,0,n)
#define INF 100000000
#define MAX 131072

typedef long long ll;

int bit[MAX+1];
int item[100001];

int main() {
    int i, n, k;
    cin >> n >> k;
    rep (i,n) {
        int w;
        cin >> w;
        if (w > 0) {
            int x = w-1;
            int sum = bit[MAX];
            while (x > 0) {
                sum -= bit[x];
                x -= x & -x;
            }
            if (sum < k) {
                item[w]++;
                while (w <= MAX) {
                    bit[w]++;
                    w += w & -w;
                }
            }
        }
        else {
            w = -w;
            if (item[w] > 0) {
                item[w]--;
                while (w <= MAX) {
                    bit[w]--;
                    w += w & -w;
                }
            }
        }
    }
    cout << bit[MAX] << endl;
    return 0;
}
0