結果

問題 No.397 NO MORE KADOMATSU
ユーザー srup٩(๑`н´๑)۶srup٩(๑`н´๑)۶
提出日時 2016-07-16 01:11:50
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 1,011 bytes
コンパイル時間 618 ms
コンパイル使用メモリ 63,164 KB
実行使用メモリ 25,220 KB
平均クエリ数 936.56
最終ジャッジ日時 2024-07-17 00:10:00
合計ジャッジ時間 2,371 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <cstdio>
using namespace std;
typedef long long ll;
typedef pair<int,int> pint;
typedef vector<int> vint;
typedef vector<pint> vpint;
#define mp make_pair
#define fi first
#define se second
#define all(v) (v).begin(),(v).end()
#define rep(i,n) for(int i=0;i<(n);i++)

int a[101];
int n;
//バブルソート
void sort(void){
    vpint ans;
    bool zerof = 1;
    bool flag = 1;
    for (int i = 0; flag; ++i){
        flag = 0;
        for (int j = n - 1; j >= i ; --j){
            if(a[j] < a[j - 1]){
                swap(a[j], a[j - 1]);
                ans.push_back(mp(j - 1, j));
                flag = 1;
                zerof = 0;
            }
        }
    }
    //変更した位置を記録しておく
    int size = ans.size(); printf("%d\n", size);
    rep(i, size) printf("%d %d\n", ans[i].fi, ans[i].se);
    return;
}
int main(void){
    cin >> n;
    rep(i, n) cin >> a[i];
    sort();
    int d; cin >> d;
    return 0;
}
0