結果

問題 No.318 学学学学学
ユーザー rogi52rogi52
提出日時 2022-10-22 05:55:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 524 ms / 2,000 ms
コード長 698 bytes
コンパイル時間 2,190 ms
コンパイル使用メモリ 208,780 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-07-01 11:24:43
合計ジャッジ時間 7,030 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
5,248 KB
testcase_01 AC 19 ms
5,376 KB
testcase_02 AC 24 ms
5,376 KB
testcase_03 AC 16 ms
5,376 KB
testcase_04 AC 20 ms
5,376 KB
testcase_05 AC 152 ms
8,576 KB
testcase_06 AC 204 ms
9,856 KB
testcase_07 AC 197 ms
9,728 KB
testcase_08 AC 192 ms
9,472 KB
testcase_09 AC 188 ms
9,216 KB
testcase_10 AC 524 ms
8,576 KB
testcase_11 AC 145 ms
8,704 KB
testcase_12 AC 135 ms
8,576 KB
testcase_13 AC 131 ms
8,704 KB
testcase_14 AC 125 ms
8,704 KB
testcase_15 AC 114 ms
8,576 KB
testcase_16 AC 150 ms
8,576 KB
testcase_17 AC 96 ms
11,008 KB
testcase_18 AC 74 ms
8,576 KB
testcase_19 AC 103 ms
10,880 KB
testcase_20 AC 218 ms
8,576 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 2 ms
5,376 KB
testcase_26 AC 2 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>
#define rep(i,n) for(int i = 0; i < (n); i++)
using namespace std;
using ll = long long;
using ld = long double;

int main(){
    cin.tie(0);
    ios::sync_with_stdio(0);
    
    int n; cin >> n;
    vector<int> a(n);
    rep(i,n) cin >> a[i];

    vector<int> ans(n);
    multiset<int> L, R(a.begin(), a.end()), st;
    rep(i,n) {
        R.erase(R.lower_bound(a[i]));
        if(L.count(a[i]) && !R.count(a[i])) st.erase(st.lower_bound(a[i]));
        ans[i] = a[i];
        if(!st.empty()) ans[i] = max(ans[i], *st.rbegin());
        if(!L.count(a[i]) && R.count(a[i])) st.insert(a[i]);
        L.insert(a[i]);
    }

    rep(i,n) cout << ans[i] << " \n"[i == n - 1];
}
0