結果

問題 No.397 NO MORE KADOMATSU
ユーザー tabataba
提出日時 2017-05-19 03:39:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 27 ms / 2,000 ms
コード長 712 bytes
コンパイル時間 1,725 ms
コンパイル使用メモリ 140,032 KB
実行使用メモリ 25,476 KB
平均クエリ数 36.83
最終ジャッジ日時 2024-07-17 01:11:25
合計ジャッジ時間 3,292 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
24,836 KB
testcase_01 AC 23 ms
24,964 KB
testcase_02 AC 23 ms
24,580 KB
testcase_03 AC 24 ms
25,220 KB
testcase_04 AC 24 ms
24,580 KB
testcase_05 AC 24 ms
24,836 KB
testcase_06 AC 24 ms
24,964 KB
testcase_07 AC 25 ms
25,476 KB
testcase_08 AC 24 ms
24,580 KB
testcase_09 AC 23 ms
25,220 KB
testcase_10 AC 25 ms
24,964 KB
testcase_11 AC 24 ms
24,836 KB
testcase_12 AC 25 ms
24,964 KB
testcase_13 AC 26 ms
25,220 KB
testcase_14 AC 26 ms
24,580 KB
testcase_15 AC 27 ms
24,836 KB
testcase_16 AC 24 ms
24,568 KB
testcase_17 AC 24 ms
24,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <cmath>
#include <cassert>
#include <random>
#include <vector>
#include <algorithm>
#include <array>
#include <functional>
#include <utility>
#include <regex>
#include <tuple>
#include <map>

using namespace std;

int main(){
	int64_t n;
	-scanf("%ld",&n);
	vector<int> a(n);
	for(int i=0;i<n;i++){
		-scanf("%d",&a[i]);
	}
	vector<array<int64_t,2>> u;
	for(auto it=a.begin();it<a.end();it++){
		auto maxe=min_element(it,a.end());
		if(it!=maxe){
			u.push_back({it-a.begin(),maxe-a.begin()});
			swap(*it,*maxe);
		}
	}
	printf("%ld\n",u.size());
	fflush(stdout);
	for(auto i:u){
		printf("%ld %ld\n",i[0],i[1]);
		fflush(stdout);
	}
	-scanf("%ld",&n);
	return 0;
}
0