結果

問題 No.318 学学学学学
ユーザー どららどらら
提出日時 2017-06-27 19:59:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 1,878 bytes
コンパイル時間 2,025 ms
コンパイル使用メモリ 180,944 KB
実行使用メモリ 16,588 KB
最終ジャッジ日時 2024-06-22 18:16:58
合計ジャッジ時間 5,704 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,816 KB
testcase_01 AC 24 ms
6,940 KB
testcase_02 AC 28 ms
6,944 KB
testcase_03 AC 20 ms
6,944 KB
testcase_04 AC 25 ms
6,940 KB
testcase_05 AC 174 ms
16,588 KB
testcase_06 AC 145 ms
11,212 KB
testcase_07 AC 122 ms
9,292 KB
testcase_08 AC 108 ms
8,652 KB
testcase_09 AC 93 ms
7,628 KB
testcase_10 AC 77 ms
6,944 KB
testcase_11 AC 169 ms
16,584 KB
testcase_12 AC 124 ms
11,080 KB
testcase_13 AC 107 ms
9,420 KB
testcase_14 AC 93 ms
8,140 KB
testcase_15 AC 84 ms
7,372 KB
testcase_16 AC 70 ms
6,944 KB
testcase_17 AC 88 ms
11,084 KB
testcase_18 AC 84 ms
11,216 KB
testcase_19 AC 87 ms
11,084 KB
testcase_20 AC 52 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define REP(i,a,n) for(int i=(a); i<(int)(n); i++)
#define rep(i,n) REP(i,0,n)
#define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it)
#define ALLOF(c) (c).begin(), (c).end()
typedef long long ll;
typedef unsigned long long ull;

class LazySegmentTree {
  const int NONE = INT_MAX;
  int N;
  vector<int> lazy, dat;

  void setLazy(int k, int v){
    lazy[k] = v;
    dat[k] = v;
  }
  
  void push(int k){
    if(lazy[k] == NONE) return;
    setLazy(2*k+1, lazy[k]);
    setLazy(2*k+2, lazy[k]);
    lazy[k] = NONE;
  }
public:
  LazySegmentTree(int n){
    N = 1;
    while(N<n) N *= 2;
    dat.resize(2*N);
    lazy.resize(2*N);
    for(int i=0; i<2*N; i++){
      dat[i] = INT_MIN;
      lazy[i] = NONE;
    }
  }

  void update(int s, int t, int val){ update(s, t, val, 0, 0, N); }
  void update(int s, int t, int val, int k, int l, int r){
    if(r<=s || t<=l) return;
    if(s<=l && r<=t){
      setLazy(k, val);
      return;
    }
    push(k);
    update(s, t, val, 2*k+1, l, (l+r)/2);
    update(s, t, val, 2*k+2, (l+r)/2, r);
  }

  int query(int s, int t){ return query(s, t, 0, 0, N); }
  int query(int s, int t, int k, int l, int r){
    if(r<=s || t<=l) return INT_MIN;
    if(s<=l && r<=t) return dat[k];
    push(k);
    int vl = query(s, t, 2*k+1, l, (l+r)/2);
    int vr = query(s, t, 2*k+2, (l+r)/2, r);
    return max(vl, vr);
  }
};

int main(){
  int N;
  cin >> N;
  vector<int> v;
  rep(i,N){
    int a;
    cin >> a;
    v.push_back(a);
  }

  map<int,vector<int>> memo;
  rep(i,N){
    memo[v[i]].push_back(i);
  }


  LazySegmentTree lst(N);
  FOR(it,memo){
    int l = (it->second)[0];
    int r = (it->second)[(it->second).size()-1];

    lst.update(l,r+1,it->first);
  }

  rep(i,N){
    if(i>0) cout << " ";
    cout << lst.query(i,i+1);
  }
  cout << endl;
  
  return 0;
}
0