結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,812 KB
testcase_01 AC 16 ms
6,940 KB
testcase_02 AC 18 ms
6,940 KB
testcase_03 AC 13 ms
6,944 KB
testcase_04 AC 17 ms
6,940 KB
testcase_05 AC 101 ms
8,704 KB
testcase_06 AC 111 ms
7,552 KB
testcase_07 AC 101 ms
6,944 KB
testcase_08 AC 90 ms
6,940 KB
testcase_09 AC 80 ms
6,940 KB
testcase_10 AC 67 ms
6,940 KB
testcase_11 AC 101 ms
8,832 KB
testcase_12 AC 84 ms
6,940 KB
testcase_13 AC 70 ms
6,944 KB
testcase_14 AC 66 ms
6,940 KB
testcase_15 AC 60 ms
6,940 KB
testcase_16 AC 52 ms
6,940 KB
testcase_17 AC 77 ms
8,704 KB
testcase_18 AC 56 ms
6,940 KB
testcase_19 AC 69 ms
8,704 KB
testcase_20 AC 35 ms
6,944 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,940 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 #

//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