結果

問題 No.318 学学学学学
ユーザー kuc_jacksonkuc_jackson
提出日時 2021-09-04 18:16:06
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 740 bytes
コンパイル時間 2,223 ms
コンパイル使用メモリ 213,824 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-12-21 08:14:19
合計ジャッジ時間 20,286 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
10,496 KB
testcase_01 AC 24 ms
12,544 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 19 ms
5,248 KB
testcase_04 AC 26 ms
5,248 KB
testcase_05 AC 165 ms
10,368 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 1,920 ms
6,824 KB
testcase_09 AC 1,214 ms
5,248 KB
testcase_10 AC 221 ms
5,248 KB
testcase_11 AC 176 ms
10,240 KB
testcase_12 AC 125 ms
7,168 KB
testcase_13 AC 111 ms
6,272 KB
testcase_14 AC 93 ms
5,248 KB
testcase_15 AC 88 ms
5,248 KB
testcase_16 AC 59 ms
5,248 KB
testcase_17 TLE -
testcase_18 AC 94 ms
7,296 KB
testcase_19 TLE -
testcase_20 AC 49 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 2 ms
12,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
using pii = pair<int, int>;

int main(){
    const int INF = 1e9;
    int N; cin >> N;
    vector<int> a(N);
    map<int, pii> cnt;
    for(int i = 0; i < N; i++){
        cin >> a[i];
        cnt[-a[i]] = {INF, -INF};
    }
    for(int i = 0; i < N; i++){
        cnt[-a[i]].first = min(cnt[-a[i]].first, i);
        cnt[-a[i]].second = max(cnt[-a[i]].second, i);
    }
    vector<int> ans(N, -1);
    for(auto mp: cnt){
        int x; pii p; tie(x, p) = mp; x *= -1;
        int l, r; tie(l, r) = p;
        for(int i = l; i <= r; i++){
            if(ans[i] != -1)continue;
            ans[i] = x;
        }
    }
    for(int x: ans)cout << x << " ";
    cout << endl;
}
0