結果

問題 No.318 学学学学学
ユーザー maine_honzukimaine_honzuki
提出日時 2021-05-31 10:24:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 621 bytes
コンパイル時間 2,262 ms
コンパイル使用メモリ 208,776 KB
実行使用メモリ 8,832 KB
最終ジャッジ日時 2024-11-08 21:08:05
合計ジャッジ時間 5,479 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
5,248 KB
testcase_01 AC 17 ms
5,248 KB
testcase_02 AC 19 ms
5,248 KB
testcase_03 AC 14 ms
5,248 KB
testcase_04 AC 17 ms
5,248 KB
testcase_05 AC 105 ms
8,832 KB
testcase_06 AC 108 ms
7,552 KB
testcase_07 AC 100 ms
6,784 KB
testcase_08 AC 91 ms
5,760 KB
testcase_09 AC 79 ms
5,248 KB
testcase_10 AC 63 ms
5,248 KB
testcase_11 AC 104 ms
8,704 KB
testcase_12 AC 80 ms
6,400 KB
testcase_13 AC 70 ms
5,504 KB
testcase_14 AC 64 ms
5,248 KB
testcase_15 AC 60 ms
5,248 KB
testcase_16 AC 54 ms
5,248 KB
testcase_17 AC 74 ms
8,704 KB
testcase_18 AC 55 ms
6,400 KB
testcase_19 AC 73 ms
8,704 KB
testcase_20 AC 36 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
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//https://ncode.syosetu.com/n4830bu/318/
#include <bits/stdc++.h>
using namespace std;

int main() {
    int N;
    cin >> N;
    vector<int> A(N);
    for (auto&& a : A) {
        cin >> a;
    }
    vector<int> R(N, -1);
    set<int> seen;
    for (int i = N - 1; i >= 0; i--) {
        int a = A[i];
        if (!seen.count(a)) {
            seen.insert(a);
            R[i] = a;
        }
    }
    set<int> maine;
    for (int i = 0; i < N; i++) {
        int l = A[i], r = R[i];
        maine.insert(l);
        cout << *maine.rbegin() << " \n"[i == N - 1];
        if (r != -1)
            maine.erase(r);
    }
}
0