結果

問題 No.397 NO MORE KADOMATSU
ユーザー hotpepsihotpepsi
提出日時 2016-07-29 00:48:11
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 580 bytes
コンパイル時間 512 ms
コンパイル使用メモリ 61,124 KB
実行使用メモリ 25,220 KB
平均クエリ数 651.67
最終ジャッジ日時 2024-07-17 00:16:10
合計ジャッジ時間 2,283 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>

using namespace std;

int main(int argc, char *argv[]) {
	int N;
	int A[100];
	cin >> N;
	for (int i = 0; i < N; ++i) {
		cin >> A[i];
	}
	vector<pair<int, int> > v;
	int i = 0, j;
	while (i < N) {
		for (i = 0; i < N; ++i) {
			for (j = i + 1; j < N; ++j) {
				if (A[i] > A[j]) {
					break;
				}
			}
			if (j < N) {
				v.push_back(make_pair(i, j));
				swap(A[i], A[j]);
				break;
			}
		}
	}
	cout << v.size() << endl;
	for (i = 0; i != v.size(); ++i) {
		cout << v[i].first << " " << v[i].second << endl;
	}
	cin >> N;
	return 0;
}
0