結果

問題 No.59 鉄道の旅
ユーザー motxxmotxx
提出日時 2014-11-07 00:35:25
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 38 ms / 5,000 ms
コード長 826 bytes
コンパイル時間 1,267 ms
コンパイル使用メモリ 160,888 KB
実行使用メモリ 7,168 KB
最終ジャッジ日時 2024-06-07 00:35:01
合計ジャッジ時間 2,123 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,040 KB
testcase_01 AC 4 ms
7,040 KB
testcase_02 AC 4 ms
7,168 KB
testcase_03 AC 4 ms
7,168 KB
testcase_04 AC 38 ms
7,168 KB
testcase_05 AC 5 ms
7,040 KB
testcase_06 AC 4 ms
7,040 KB
testcase_07 AC 4 ms
7,168 KB
testcase_08 AC 8 ms
7,040 KB
testcase_09 AC 9 ms
7,168 KB
testcase_10 AC 8 ms
7,040 KB
testcase_11 AC 6 ms
7,168 KB
testcase_12 AC 19 ms
7,040 KB
testcase_13 AC 38 ms
7,168 KB
testcase_14 AC 36 ms
7,040 KB
testcase_15 AC 5 ms
7,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int N, K;

#define MX (1000010)

class BIT {
private:
  
  vector<int> bit;
  int size;
  
public:
  
  BIT(int n) : size(n)
  {
    bit.resize(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 <= size) {
      bit[i] += x;
      i += i & -i;
    }
  }
};

int main() {

  cin >> N >> K;
  static BIT b(MX+1);
  
  for(int i=0; i<N; i++) {
    int W; cin >> W;
    if(W > 0) {
      if(b.sum(MX)-b.sum(W-1) < K) {
        b.add(W, 1);
      }
    }
    else {
      W *= -1;
      if(b.sum(W)-b.sum(W-1) > 0) {
        b.add(W, -1);
      }
    }
  }
  
  cout << b.sum(MX) << endl;
  return 0;
}
0