結果

問題 No.318 学学学学学
ユーザー krotonkroton
提出日時 2015-12-11 00:06:31
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 612 bytes
コンパイル時間 870 ms
コンパイル使用メモリ 77,248 KB
実行使用メモリ 9,856 KB
最終ジャッジ日時 2024-06-22 14:18:12
合計ジャッジ時間 3,934 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,816 KB
testcase_01 AC 17 ms
6,940 KB
testcase_02 AC 21 ms
6,940 KB
testcase_03 AC 13 ms
6,940 KB
testcase_04 AC 18 ms
6,944 KB
testcase_05 AC 121 ms
9,856 KB
testcase_06 AC 104 ms
8,320 KB
testcase_07 AC 91 ms
6,940 KB
testcase_08 AC 82 ms
6,940 KB
testcase_09 AC 73 ms
6,940 KB
testcase_10 AC 60 ms
6,940 KB
testcase_11 AC 119 ms
9,856 KB
testcase_12 AC 89 ms
6,944 KB
testcase_13 AC 75 ms
6,944 KB
testcase_14 AC 68 ms
6,944 KB
testcase_15 AC 60 ms
6,940 KB
testcase_16 AC 50 ms
6,940 KB
testcase_17 AC 83 ms
8,192 KB
testcase_18 AC 56 ms
6,940 KB
testcase_19 AC 77 ms
8,192 KB
testcase_20 AC 36 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 1 ms
6,944 KB
testcase_24 AC 1 ms
6,944 KB
testcase_25 AC 1 ms
6,940 KB
testcase_26 AC 1 ms
6,940 KB
testcase_27 AC 1 ms
6,940 KB
testcase_28 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
#include <set>
using namespace std;

int main(){
  int n;
  cin >> n;
  vector<int> a(n);
  for(int i=0;i<n;i++)cin >> a[i];

  map<int, int> R;
  for(int i=n-1;i>=0;i--){
    if(!R.count(a[i])){
      R[a[i]] = i;
    }
  }
  set<int, greater<int>> stk;
  for(int i=0;i<n;i++){
    if(!stk.count(a[i])){
      stk.insert(a[i]);
    }
    while(!stk.empty() && R[*stk.begin()] <= i){
      stk.erase(stk.begin());
    }
    if(!stk.empty() && *stk.begin() > a[i]){
      a[i] = *stk.begin();
    }
  }
  for(int x : a){
    cout << x << " ";
  }
  return 0;
}
0