結果
問題 | No.318 学学学学学 |
ユーザー | mamekin |
提出日時 | 2015-12-20 09:13:59 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,121 bytes |
コンパイル時間 | 1,146 ms |
コンパイル使用メモリ | 100,608 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-17 11:54:20 |
合計ジャッジ時間 | 3,427 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 6 ms
6,812 KB |
testcase_01 | AC | 11 ms
6,944 KB |
testcase_02 | WA | - |
testcase_03 | AC | 10 ms
6,940 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 59 ms
6,940 KB |
testcase_07 | AC | 59 ms
6,944 KB |
testcase_08 | AC | 60 ms
6,940 KB |
testcase_09 | AC | 57 ms
6,944 KB |
testcase_10 | AC | 59 ms
6,940 KB |
testcase_11 | WA | - |
testcase_12 | AC | 60 ms
6,944 KB |
testcase_13 | AC | 56 ms
6,944 KB |
testcase_14 | AC | 55 ms
6,940 KB |
testcase_15 | AC | 56 ms
6,944 KB |
testcase_16 | AC | 52 ms
6,944 KB |
testcase_17 | AC | 48 ms
6,940 KB |
testcase_18 | AC | 41 ms
6,944 KB |
testcase_19 | AC | 47 ms
6,944 KB |
testcase_20 | AC | 41 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 | 1 ms
6,944 KB |
testcase_25 | AC | 1 ms
6,944 KB |
testcase_26 | AC | 1 ms
6,940 KB |
testcase_27 | AC | 1 ms
6,944 KB |
testcase_28 | WA | - |
ソースコード
#include <cstdio> #include <iostream> #include <sstream> #include <fstream> #include <iomanip> #include <algorithm> #include <cmath> #include <string> #include <vector> #include <list> #include <queue> #include <stack> #include <set> #include <map> #include <bitset> #include <numeric> #include <limits> #include <climits> #include <cfloat> #include <functional> using namespace std; int main() { int n; cin >> n; vector<int> a(n); vector<pair<int, int> > p(n); for(int i=0; i<n; ++i){ cin >> a[i]; p[i] = make_pair(a[i], i); } sort(p.rbegin(), p.rend()); vector<int> skip(n, -1); for(int i=0; i<n-1; ++i){ int b = p[i].first; if(b != p[i+1].first) continue; int x = p[i+1].second; int y = p[i].second; for(int i=x; i<=y; ++i){ if(skip[i] == -1){ a[i] = b; skip[i] = y; } else{ i = skip[i]; } } } cout << a[0]; for(int i=1; i<n; ++i) cout << ' ' << a[i]; cout << endl; return 0; }