結果

問題 No.365 ジェンガソート
ユーザー kongarishisyamokongarishisyamo
提出日時 2016-04-29 22:44:15
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 449 bytes
コンパイル時間 518 ms
コンパイル使用メモリ 59,564 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-12 01:41:54
合計ジャッジ時間 2,251 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 41
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>

using namespace std;

int b[200005];
int bs[100005];

#define GETA 100000

int main(){

	int N;

	cin>>N;

	for(int i=0;i<N;i++) cin>>b[i+GETA],bs[i]=b[i+GETA];

	sort(bs,bs+N);

	int i=N-1;
	int j=N-1;
	int c=0;

	while(1){
		//cout<<i<<","<<j<<","<<bs[i]<<","<<b[j+GETA]<<endl;
		if(bs[i]!=b[j+GETA]){
			b[GETA-1-c]=bs[i];
			j--;
			c++;
		}
		else i--,j--;
		if(i==-1||j==-1) break;
	}

	cout<<c<<endl;
}
0