結果

問題 No.318 学学学学学
ユーザー otsnskotsnsk
提出日時 2016-10-24 15:33:16
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,091 ms / 2,000 ms
コード長 736 bytes
コンパイル時間 895 ms
コンパイル使用メモリ 71,960 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-06-22 18:05:58
合計ジャッジ時間 7,795 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,812 KB
testcase_01 AC 17 ms
6,940 KB
testcase_02 AC 19 ms
6,940 KB
testcase_03 AC 13 ms
6,944 KB
testcase_04 AC 16 ms
6,944 KB
testcase_05 AC 95 ms
10,880 KB
testcase_06 AC 746 ms
7,808 KB
testcase_07 AC 736 ms
6,940 KB
testcase_08 AC 588 ms
6,944 KB
testcase_09 AC 390 ms
6,940 KB
testcase_10 AC 92 ms
6,944 KB
testcase_11 AC 94 ms
11,008 KB
testcase_12 AC 73 ms
7,808 KB
testcase_13 AC 67 ms
6,940 KB
testcase_14 AC 61 ms
6,940 KB
testcase_15 AC 59 ms
6,940 KB
testcase_16 AC 50 ms
6,944 KB
testcase_17 AC 1,091 ms
7,808 KB
testcase_18 AC 58 ms
7,808 KB
testcase_19 AC 1,078 ms
7,936 KB
testcase_20 AC 38 ms
6,948 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 1 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 1 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 1 ms
6,944 KB
testcase_28 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>

typedef long long ll;

using namespace std;

int main() {
    int n, i;
    cin >> n;
    vector<ll> a(n), b(n);
    map<ll, pair<int, int>> rng;

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

    for (i = 0; i < n; ++i) {
        auto it = rng.find(a[i]);
        if (it == rng.end()) {
            rng[a[i]] = make_pair(i, i);
        }
        else {
            it->second.second = i;
        }
    }
    for (auto p: rng) {
        auto lr = p.second;
        for (i = lr.first; i <= lr.second; ++i) {
            b[i] = p.first;
        }
    }

    cout << b[0];
    for (i = 1; i < n; ++i) {
        cout << ' ' << b[i];
    }
    cout << endl;

    return 0;
}
0