結果

問題 No.59 鉄道の旅
ユーザー h_nosonh_noson
提出日時 2016-04-06 19:57:11
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 45 ms / 5,000 ms
コード長 1,100 bytes
コンパイル時間 483 ms
コンパイル使用メモリ 64,548 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-06-07 02:08:40
合計ジャッジ時間 1,317 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 ms
5,376 KB
testcase_04 AC 45 ms
11,264 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 12 ms
11,208 KB
testcase_09 AC 11 ms
10,880 KB
testcase_10 AC 11 ms
10,096 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 16 ms
5,376 KB
testcase_13 AC 36 ms
5,376 KB
testcase_14 AC 34 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

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 1048576

typedef long long ll;

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

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