結果

問題 No.397 NO MORE KADOMATSU
ユーザー かにかに
提出日時 2016-10-11 19:47:26
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 1,207 bytes
コンパイル時間 1,543 ms
コンパイル使用メモリ 165,580 KB
実行使用メモリ 25,476 KB
平均クエリ数 819.72
最終ジャッジ日時 2024-07-17 00:29:31
合計ジャッジ時間 3,114 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include "bits/stdc++.h"
#define _CRT_SECURE_NO_WARNINGS
#define rep(i,n) for(int i = 0;i < n;i++)
#define REP(i,n,k) for(int i = n;i < k;i++)
#define P(p) cout << (p) << endl;
#define sP(p) cout << setprecision(15) << fixed << p << endl;
#define Pi pair<int,int>
#define IINF 1e9
#define LINF 1e18
#define vi vector<int>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
int dx[] = { 1, 0,-1,0 };
int dy[] = { 0, 1,0,-1 };

bool isPrime(int n) {
	if (n <= 1)return false;
	if (n == 2)return true;
	if (n % 2 == 0)return false;
	for (int i = 3; i*i <= n; i += 2) {
		if (n%i == 0)return false;
	}
	return true;
}

void bubbleSort(vector<int> v) {
	vector<pair<int, int> > ans;
	for (int i = 0; i < v.size() - 1; i++) {
		for (int j = v.size()-1; j > i; j--) {
			if (v[j]>v[j - 1]) {
				int t = v[j];
				v[j] = v[j - 1];
				v[j - 1] = t;
				ans.push_back(make_pair(j-1,j));
			}
		}
	}
	P(ans.size());
	rep(i, ans.size()) {
		cout << ans[i].first << " " << ans[i].second << endl;
	}
}

void solve() {
	int n;
	cin >> n;
	vi v;
	rep(i, n) {
		int a;
		cin >> a;
		v.push_back(a);
	}
	bubbleSort(v);
	cout.flush();
	int dummy;
	cin >> dummy;
}

int main() {
	solve();
	return 0;
}
0