結果
問題 | No.365 ジェンガソート |
ユーザー | HeyHey0111 |
提出日時 | 2016-04-29 23:27:49 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 760 bytes |
コンパイル時間 | 622 ms |
コンパイル使用メモリ | 69,860 KB |
実行使用メモリ | 13,640 KB |
最終ジャッジ日時 | 2024-10-04 19:04:47 |
合計ジャッジ時間 | 4,553 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,640 KB |
testcase_01 | AC | 1 ms
6,820 KB |
testcase_02 | AC | 1 ms
6,820 KB |
testcase_03 | AC | 1 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 1 ms
6,816 KB |
testcase_06 | AC | 1 ms
6,816 KB |
testcase_07 | AC | 1 ms
6,820 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 2 ms
6,816 KB |
testcase_15 | AC | 1 ms
6,816 KB |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | AC | 4 ms
6,820 KB |
testcase_19 | AC | 73 ms
6,820 KB |
testcase_20 | AC | 9 ms
6,816 KB |
testcase_21 | WA | - |
testcase_22 | TLE | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | TLE | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | TLE | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
ソースコード
#include<iostream> #include<string> #include<vector> #include<iterator> #include<algorithm> using namespace std; int main(){ int n; cin >> n; vector<int> v(n); vector<int> buf; for(int i=0;i<n;i++) cin >> v[i]; int cur =0; int cnt=0; int counter=0; do{ cnt=0; cur=0; for(int i=0;i<v.size();i++){ if(cur<v[i]){ cur=v[i]; }else{ cnt++; buf.push_back(v[i]); v.erase(v.begin()+i); i--; } } sort(buf.begin(),buf.end()); buf.insert(buf.end(),v.begin(),v.end()); v.clear(); v.shrink_to_fit(); copy(buf.begin(),buf.end(),back_inserter(v)); buf.clear(); buf.shrink_to_fit(); counter+=cnt; }while(cnt); cout<<counter<<endl; return 0; }