結果

問題 No.59 鉄道の旅
ユーザー n_knuun_knuu
提出日時 2015-09-23 19:22:31
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 21 ms / 5,000 ms
コード長 1,621 bytes
コンパイル時間 1,127 ms
コンパイル使用メモリ 144,412 KB
実行使用メモリ 7,492 KB
最終ジャッジ日時 2023-08-26 06:39:19
合計ジャッジ時間 2,051 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
typedef long long int ll;
typedef pair<int, int> P;
typedef pair<ll, ll> Pll;
typedef vector<int> Vi;
typedef tuple<int, int, int> T;
#define FOR(i,s,x) for(int i=s;i<(int)(x);i++)
#define REP(i,x) FOR(i,0,x)
#define ALL(c) c.begin(), c.end()
#define DUMP( x ) cerr << #x << " = " << ( x ) << endl

#define INF 2147483647
const int MAX_N = 1000000;

/*
Range Sum Query by FenwickTree(Binary Indexed Tree)

total number: n
queries:
    1. update(i, val): add val to i-th value 
    2. query(n): sum(bit[0] + ... + bit[n-1])
complexity: O(log n)

Self-balancing binary search tree or Segment Tree can do the same, it takes longer to program and complexity also increases.

Thanks: http://hos.ac/slides/20140319_bit.pdf
    
used in ARC031 C, indeednow finalB E, DSL2B(AOJ)
*/

int dat[MAX_N + 1];

struct RangeSumQuery {
  int N;

  RangeSumQuery(int N) : N(N) { }

  void update(int k, int val) {
    while (k < N) {
      dat[k] += val;
      k |= k + 1;
    }
  }

  int query(int k) {
    k--;
    int ret = 0;
    while (k >= 0) {
      ret += dat[k];
      k = (k & (k + 1)) - 1;
    }
    return ret;
  }
};


int main() {
  // use scanf in CodeForces!
  cin.tie(0);
  ios_base::sync_with_stdio(false);

  int N, K;
  cin >> N >> K;
  RangeSumQuery fwt(1000001);

  REP(i, N) {
    int W;
    cin >> W;
    if (W < 0) {
      W = abs(W);
      if (fwt.query(W+1) - fwt.query(W) > 0) {
	fwt.update(W, -1);
      }
    } else {
      if (fwt.query(1000001) - fwt.query(W) < K) {
	fwt.update(W, 1);
      }
    }
  }
  cout << fwt.query(1000001) << endl;
  
  return 0;
}
0