結果

問題 No.318 学学学学学
ユーザー eQeeQe
提出日時 2020-04-02 08:04:11
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 234 ms / 2,000 ms
コード長 2,107 bytes
コンパイル時間 1,669 ms
コンパイル使用メモリ 175,388 KB
実行使用メモリ 18,304 KB
最終ジャッジ日時 2024-06-28 01:52:53
合計ジャッジ時間 6,587 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
5,248 KB
testcase_01 AC 33 ms
6,016 KB
testcase_02 AC 39 ms
6,400 KB
testcase_03 AC 25 ms
5,376 KB
testcase_04 AC 34 ms
6,400 KB
testcase_05 AC 234 ms
18,304 KB
testcase_06 AC 187 ms
12,672 KB
testcase_07 AC 163 ms
12,032 KB
testcase_08 AC 133 ms
11,008 KB
testcase_09 AC 109 ms
9,856 KB
testcase_10 AC 79 ms
8,576 KB
testcase_11 AC 228 ms
18,176 KB
testcase_12 AC 151 ms
12,800 KB
testcase_13 AC 127 ms
11,392 KB
testcase_14 AC 106 ms
10,368 KB
testcase_15 AC 88 ms
9,472 KB
testcase_16 AC 71 ms
8,448 KB
testcase_17 AC 120 ms
12,672 KB
testcase_18 AC 108 ms
12,800 KB
testcase_19 AC 119 ms
12,672 KB
testcase_20 AC 54 ms
8,320 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <string>
#define ft first
#define sc second
#define pt(sth) cout << sth << "\n"
#define chmax(a, b) (a)=max(a, b)
#define chmin(a, b) (a)=min(a, b)
#define moC(a, s, b) (a)=((a)s(b)+MOD)%MOD
using namespace std;
typedef long long ll;
typedef pair<ll, ll> pll;
static const ll INF=1e18;
static const ll MAX=101010;
static const ll MOD=1e9+7;


/*
 for(i=0; i<N; i++)
   cin >> a[i];
*/

class LazySegTree {
public:
  ll n, height;
  vector<ll> data, lazy;
  
  LazySegTree(ll _n) {
    n=1;
    height=1;
    while(n<_n) {
      n*=2;
      height++;
    }
    data=vector<ll>(2*n-1);
    lazy=vector<ll>(2*n-1);
  }
  
  void eval(ll k, ll l, ll r) {
    if(lazy[k]!=0) {
      data[k]=lazy[k];
      
      if(r-l>1) {
        lazy[k*2+1]=lazy[k]/2;
        lazy[k*2+2]=lazy[k]/2;
      }
      lazy[k]=0;
    }
  }
  
  void _change(ll a, ll b, ll x, ll k, ll l, ll r) {
    eval(k, l, r);
    if(r<=a || b<=l) return;
    
    if(a<=l && r<=b) {
      lazy[k]=(r-l)*x;
      eval(k, l, r);
    }else {
      _change(a, b, x, k*2+1, l, (l+r)/2);
      _change(a, b, x, k*2+2, (l+r)/2, r);
      //data[k]=func(data[k*2+1], data[k*2+2]);
    }
  }
  
  void change(ll a, ll b, ll x) {_change(a, b, x, 0, 0, n);}
  
  //[a, b):要求区間,[l, r):今見ている区間
  ll _sum(ll a, ll b, ll k, ll l, ll r) {
    if(r<=a || b<=l) return 0;
    
    eval(k, l, r);
    if(a<=l && r<=b) {
      return data[k];
    }else {
      ll s=_sum(a, b, k*2+1, l, (l+r)/2);
      ll t=_sum(a, b, k*2+2, (l+r)/2, r);
      return s+t;
    }
  }
  
  ll sum(ll a, ll b) {return _sum(a, b, 0, 0, n);}
  
};



int main(void) {
  ll i, j, k;
  
  ll N;
  cin >> N;
  ll a[MAX];
  
  map<ll, vector<ll>> mv;
  for(i=0; i<N; i++) {
    ll a;
    cin >> a;
    mv[a].push_back(i);
  }
  
  LazySegTree lst=LazySegTree(N);
  
  for(auto it=mv.begin(); it!=mv.end(); it++) {
    ll x=it->ft;
    
    sort(mv[x].begin(), mv[x].end());
    ll a=mv[x][0], b=mv[x][(ll)mv[x].size()-1];
    lst.change(a, b+1, x);
  }
  
  for(i=0; i<N; i++) cout << lst.sum(i, i+1) << " ";
  pt("");
  
  
}

0