結果

問題 No.711 競技レーティング単調増加
ユーザー koba-e964koba-e964
提出日時 2017-10-01 19:22:27
言語 C++11
(gcc 13.3.0)
結果
TLE  
実行時間 -
コード長 1,252 bytes
コンパイル時間 1,126 ms
コンパイル使用メモリ 111,960 KB
実行使用メモリ 32,000 KB
最終ジャッジ日時 2024-11-15 21:38:21
合計ジャッジ時間 66,939 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
10,496 KB
testcase_01 AC 2 ms
19,584 KB
testcase_02 AC 2 ms
10,496 KB
testcase_03 AC 3 ms
19,328 KB
testcase_04 AC 3 ms
10,496 KB
testcase_05 AC 3 ms
21,376 KB
testcase_06 AC 3 ms
10,496 KB
testcase_07 AC 3 ms
21,888 KB
testcase_08 AC 3 ms
10,496 KB
testcase_09 AC 3 ms
21,248 KB
testcase_10 AC 3 ms
10,496 KB
testcase_11 AC 3 ms
20,864 KB
testcase_12 AC 3 ms
10,496 KB
testcase_13 AC 3 ms
22,400 KB
testcase_14 AC 3 ms
10,496 KB
testcase_15 AC 3 ms
20,480 KB
testcase_16 AC 3 ms
10,496 KB
testcase_17 AC 3 ms
21,376 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 70 ms
13,764 KB
testcase_29 AC 78 ms
12,160 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 32 ms
11,392 KB
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 AC 2 ms
5,248 KB
testcase_42 AC 31 ms
5,504 KB
testcase_43 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cassert>
#include <cctype>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <ctime>
#include <deque>
#include <functional>
#include <iomanip>
#include <iostream>
#include <list>
#include <map>
#include <queue>
#include <random>
#include <set>
#include <sstream>
#include <string>
#include <utility>
#include <vector>

#define REP(i,s,n) for(int i=(int)(s);i<(int)(n);i++)

using namespace std;
typedef long long int ll;
typedef vector<int> VI;
typedef vector<ll> VL;
typedef pair<int, int> PI;



int main(void) {
  int n;
  cin >> n;
  VL a(n);
  REP(i, 0, n) {
    cin >> a[i];
    a[i] -= i + 1;
  }
  // Coord compression
  map<ll, int> tbl;
  vector<ll> inv_tbl;
  {
    set<int> vals;
    vals.insert(0);
    REP(i, 0, n) {
      if (a[i] >= 0) {
      vals.insert(a[i]);
      }
    }
    inv_tbl = vector<ll>(vals.begin(), vals.end());
    sort(inv_tbl.begin(), inv_tbl.end());
    REP(i, 0, inv_tbl.size()) {
      tbl[inv_tbl[i]] = i;
    }
  }
  VL dp(200010);
  int m = tbl.size();
  REP(i, 0, n) {
    if (tbl.count(a[i])) {
      int idx = tbl[a[i]];
      REP(j, idx, m) {
	dp[j] = max(dp[j], j >= 1 ? dp[j - 1] : 0) + (j == idx ? 1 : 0);
      }
    }
  }
  cout << n - dp[m - 1] << endl;
}
0