結果

問題 No.365 ジェンガソート
ユーザー HeyHey0111HeyHey0111
提出日時 2016-04-29 23:27:49
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 760 bytes
コンパイル時間 850 ms
コンパイル使用メモリ 69,788 KB
実行使用メモリ 13,760 KB
最終ジャッジ日時 2024-04-15 05:58:29
合計ジャッジ時間 4,529 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,760 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 WA -
testcase_09 AC 2 ms
6,944 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0