結果

問題 No.318 学学学学学
ユーザー 👑 CleyLCleyL
提出日時 2021-12-10 10:06:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 1,276 bytes
コンパイル時間 869 ms
コンパイル使用メモリ 90,580 KB
実行使用メモリ 16,384 KB
最終ジャッジ日時 2024-07-18 03:46:30
合計ジャッジ時間 4,704 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,812 KB
testcase_01 AC 22 ms
6,944 KB
testcase_02 AC 27 ms
6,944 KB
testcase_03 AC 17 ms
6,940 KB
testcase_04 AC 22 ms
6,940 KB
testcase_05 AC 152 ms
16,000 KB
testcase_06 AC 109 ms
12,584 KB
testcase_07 AC 100 ms
10,880 KB
testcase_08 AC 87 ms
9,088 KB
testcase_09 AC 75 ms
7,680 KB
testcase_10 AC 62 ms
6,944 KB
testcase_11 AC 142 ms
16,384 KB
testcase_12 AC 98 ms
11,776 KB
testcase_13 AC 84 ms
9,984 KB
testcase_14 AC 71 ms
8,704 KB
testcase_15 AC 63 ms
7,552 KB
testcase_16 AC 52 ms
6,944 KB
testcase_17 AC 83 ms
12,928 KB
testcase_18 AC 81 ms
12,768 KB
testcase_19 AC 78 ms
13,312 KB
testcase_20 AC 35 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 1 ms
6,944 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <queue>
#include <vector>
#include <algorithm>
#include <map>
using namespace std;
struct d{
  int i;
  int l,r;
  bool operator<(d &a){
    return i < a.i;
  }
};
int main(){
  int n;cin>>n;
  map<int,pair<int,int>> A;
  vector<int> Z(n);
  for(int i = 0; n > i; i++){
    int t;cin>>t;
    if(!A[t].first){
      A[t].first = i+1;
    }
    A[t].second = i+1;
    Z[i] = t;
  }
  vector<int> ret[n+1],ans(n);
  for(auto x: A){
    ret[x.second.first-1].push_back(x.first);
    ret[x.second.second].push_back(-x.first);
  }
  priority_queue<int> C;
  priority_queue<int> eraser;
  
  for(int i = 0; n > i; i++){
    for(int j = 0; ret[i].size() > j; j++){
      if(ret[i][j]>0){
        C.push(ret[i][j]);
      }else if(ret[i][j] < 0){
        eraser.push(-1*ret[i][j]);
      }
    }
    //cout << C.size() << endl;
    while(C.size() && eraser.size() && C.top() == eraser.top()){
      C.pop();
      eraser.pop();
    }
    // cout << i << " " << C.size() << " " << eraser.size();
    // if(C.size())cout << " C:" << C.top();
    // if(eraser.size())cout << " e:" << eraser.top();
    // cout << endl;
    ans[i] = C.top();
  }
  for(int i = 0; n > i; i++){
    cout << max(Z[i],ans[i]);
    if(i+1 != n)cout << " ";
  }
  cout << endl;
  

}
0