結果
問題 | No.318 学学学学学 |
ユーザー | zerokugi |
提出日時 | 2015-12-11 22:13:33 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 77 ms / 2,000 ms |
コード長 | 2,876 bytes |
コンパイル時間 | 1,171 ms |
コンパイル使用メモリ | 126,184 KB |
実行使用メモリ | 10,748 KB |
最終ジャッジ日時 | 2024-06-22 15:43:42 |
合計ジャッジ時間 | 3,805 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 6 ms
6,812 KB |
testcase_01 | AC | 12 ms
6,820 KB |
testcase_02 | AC | 17 ms
6,944 KB |
testcase_03 | AC | 10 ms
6,940 KB |
testcase_04 | AC | 13 ms
6,944 KB |
testcase_05 | AC | 77 ms
10,748 KB |
testcase_06 | AC | 72 ms
7,816 KB |
testcase_07 | AC | 57 ms
6,940 KB |
testcase_08 | AC | 42 ms
6,940 KB |
testcase_09 | AC | 38 ms
6,944 KB |
testcase_10 | AC | 27 ms
6,944 KB |
testcase_11 | AC | 73 ms
10,748 KB |
testcase_12 | AC | 48 ms
7,076 KB |
testcase_13 | AC | 39 ms
6,940 KB |
testcase_14 | AC | 34 ms
6,944 KB |
testcase_15 | AC | 31 ms
6,940 KB |
testcase_16 | AC | 28 ms
6,944 KB |
testcase_17 | AC | 49 ms
9,096 KB |
testcase_18 | AC | 38 ms
7,052 KB |
testcase_19 | AC | 47 ms
9,092 KB |
testcase_20 | AC | 24 ms
6,940 KB |
testcase_21 | AC | 2 ms
6,944 KB |
testcase_22 | AC | 1 ms
6,940 KB |
testcase_23 | AC | 2 ms
6,940 KB |
testcase_24 | AC | 2 ms
6,940 KB |
testcase_25 | AC | 1 ms
6,940 KB |
testcase_26 | AC | 2 ms
6,940 KB |
testcase_27 | AC | 1 ms
6,940 KB |
testcase_28 | AC | 1 ms
6,940 KB |
コンパイルメッセージ
main.cpp: In function ‘int main(int, char**)’: main.cpp:69:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 69 | scanf("%d", &n); | ~~~~~^~~~~~~~~~ main.cpp:73:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 73 | scanf("%d", &x); | ~~~~~^~~~~~~~~~
ソースコード
#include <cstdio> #include <cmath> #include <cstring> #include <cstdlib> #include <climits> #include <ctime> #include <queue> #include <stack> #include <algorithm> #include <list> #include <vector> #include <set> #include <map> #include <iostream> #include <deque> #include <complex> #include <string> #include <iomanip> #include <sstream> #include <bitset> #include <valarray> #include <unordered_map> #include <iterator> #include <functional> #include <cassert> using namespace std; typedef long long int ll; typedef unsigned int uint; typedef unsigned char uchar; typedef unsigned long long ull; typedef pair<int, int> pii; typedef pair<ll, ll> pll; typedef vector<int> vi; #define REP(i,x) for(int i=0;i<(int)(x);i++) #define REPS(i,x) for(int i=1;i<=(int)(x);i++) #define RREP(i,x) for(int i=((int)(x)-1);i>=0;i--) #define RREPS(i,x) for(int i=((int)(x));i>0;i--) #define FOR(i,c) for(__typeof((c).begin())i=(c).begin();i!=(c).end();i++) #define RFOR(i,c) for(__typeof((c).rbegin())i=(c).rbegin();i!=(c).rend();i++) #define ALL(container) (container).begin(), (container).end() #define RALL(container) (container).rbegin(), (container).rend() #define SZ(container) ((int)container.size()) #define mp(a,b) make_pair(a, b) #define pb push_back #define eb emplace_back #define UNIQUE(v) v.erase( unique(v.begin(), v.end()), v.end() ); template<class T> bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; } template<class T> bool chmin(T &a, const T &b) { if (a>b) { a=b; return 1; } return 0; } template<class T> ostream& operator<<(ostream &os, const vector<T> &t) { os<<"["; FOR(it,t) {if(it!=t.begin()) os<<","; os<<*it;} os<<"]"; return os; } template<class T> ostream& operator<<(ostream &os, const set<T> &t) { os<<"{"; FOR(it,t) {if(it!=t.begin()) os<<","; os<<*it;} os<<"}"; return os; } template<class S, class T> ostream& operator<<(ostream &os, const pair<S,T> &t) { return os<<"("<<t.first<<","<<t.second<<")";} template<class S, class T> pair<S,T> operator+(const pair<S,T> &s, const pair<S,T> &t){ return pair<S,T>(s.first+t.first, s.second+t.second);} template<class S, class T> pair<S,T> operator-(const pair<S,T> &s, const pair<S,T> &t){ return pair<S,T>(s.first-t.first, s.second-t.second);} const int INF = 1<<28; const double EPS = 1e-8; const int MOD = 1000000007; int T, n, m; int main(int argc, char *argv[]){ scanf("%d", &n); unordered_map<int, pii> mp; REP(i, n){ int x; scanf("%d", &x); if(!mp.count(x)) mp[x].first = i; mp[x].second = i + 1; } vector<pii> ev; for(auto it : mp){ ev.eb(it.second.first, it.first); ev.eb(it.second.second, -it.first); } sort(ALL(ev)); vi ans(n); int i = 0; set<int> s; for(auto it : ev){ int t, x; tie(t, x) = it; while(i < t) ans[i++] = *s.rbegin(); if(x > 0) s.insert(x); else s.erase(-x); } REP(i, n) printf("%d%c", ans[i], " \n"[i+1 == n]); return 0; }