結果

問題 No.318 学学学学学
ユーザー btkbtk
提出日時 2015-12-11 19:29:29
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 542 bytes
コンパイル時間 1,641 ms
コンパイル使用メモリ 172,680 KB
実行使用メモリ 8,960 KB
最終ジャッジ日時 2024-06-22 15:34:23
合計ジャッジ時間 4,328 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,816 KB
testcase_01 AC 18 ms
6,944 KB
testcase_02 AC 20 ms
6,944 KB
testcase_03 AC 14 ms
6,944 KB
testcase_04 AC 18 ms
6,940 KB
testcase_05 AC 118 ms
8,576 KB
testcase_06 AC 94 ms
6,940 KB
testcase_07 AC 88 ms
6,940 KB
testcase_08 AC 78 ms
6,944 KB
testcase_09 AC 70 ms
6,944 KB
testcase_10 AC 59 ms
6,944 KB
testcase_11 AC 117 ms
8,960 KB
testcase_12 AC 85 ms
6,944 KB
testcase_13 AC 71 ms
6,940 KB
testcase_14 AC 62 ms
6,940 KB
testcase_15 AC 54 ms
6,940 KB
testcase_16 AC 48 ms
6,944 KB
testcase_17 AC 61 ms
6,940 KB
testcase_18 AC 58 ms
6,940 KB
testcase_19 AC 56 ms
6,940 KB
testcase_20 AC 31 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 1 ms
6,944 KB
testcase_23 AC 1 ms
6,940 KB
testcase_24 AC 1 ms
6,940 KB
testcase_25 AC 1 ms
6,940 KB
testcase_26 AC 1 ms
6,944 KB
testcase_27 AC 1 ms
6,944 KB
testcase_28 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

typedef pair<int, int> P;

int main() {
    int n;cin>>n;
    map<int,int> lr;
    vector<int> unko(n,-1);
    for(int i = 0; i < n; i++){
        int num;cin>>num;
        if(lr.count(num)==0)unko[i]=num;
        lr[num]=i;
    }
    priority_queue<P> que;
    for(int i=0;i<n;i++){
        if(unko[i]>=1){
            que.push(make_pair(unko[i],lr[unko[i]]));
        }
        while(que.top().second<i)que.pop();
        cout<<(!i)+" "<<que.top().first;
    }
    cout<<endl;
    return 0;
}
0