結果

問題 No.397 NO MORE KADOMATSU
ユーザー かにかに
提出日時 2016-10-11 19:47:26
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 1,207 bytes
コンパイル時間 1,453 ms
コンパイル使用メモリ 150,732 KB
実行使用メモリ 24,384 KB
平均クエリ数 819.72
最終ジャッジ日時 2023-09-24 00:36:19
合計ジャッジ時間 3,397 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
24,384 KB
testcase_01 AC 23 ms
23,760 KB
testcase_02 AC 23 ms
24,348 KB
testcase_03 AC 32 ms
23,340 KB
testcase_04 AC 25 ms
23,628 KB
testcase_05 AC 33 ms
23,628 KB
testcase_06 AC 27 ms
23,988 KB
testcase_07 AC 26 ms
23,316 KB
testcase_08 AC 23 ms
23,340 KB
testcase_09 AC 22 ms
23,412 KB
testcase_10 AC 21 ms
23,796 KB
testcase_11 AC 23 ms
23,628 KB
testcase_12 AC 31 ms
23,592 KB
testcase_13 AC 32 ms
23,748 KB
testcase_14 AC 32 ms
23,400 KB
testcase_15 AC 34 ms
23,604 KB
testcase_16 AC 22 ms
23,484 KB
testcase_17 AC 22 ms
23,400 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