結果

問題 No.397 NO MORE KADOMATSU
ユーザー maimai
提出日時 2016-07-16 18:46:59
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 30 ms / 2,000 ms
コード長 2,081 bytes
コンパイル時間 1,909 ms
コンパイル使用メモリ 175,520 KB
実行使用メモリ 24,372 KB
平均クエリ数 34.39
最終ジャッジ日時 2023-09-24 00:21:39
合計ジャッジ時間 3,352 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
23,400 KB
testcase_01 AC 24 ms
24,060 KB
testcase_02 AC 25 ms
23,640 KB
testcase_03 AC 25 ms
24,012 KB
testcase_04 AC 26 ms
23,604 KB
testcase_05 AC 25 ms
24,360 KB
testcase_06 AC 26 ms
24,000 KB
testcase_07 AC 26 ms
23,424 KB
testcase_08 AC 26 ms
23,628 KB
testcase_09 AC 25 ms
24,372 KB
testcase_10 AC 26 ms
23,880 KB
testcase_11 AC 26 ms
24,048 KB
testcase_12 AC 25 ms
24,276 KB
testcase_13 AC 26 ms
23,688 KB
testcase_14 AC 25 ms
23,688 KB
testcase_15 AC 26 ms
24,348 KB
testcase_16 AC 25 ms
23,556 KB
testcase_17 AC 26 ms
24,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;
typedef long long int ll;

#define debugv(v) printf("L%d %s => ",__LINE__,#v);for(auto e:v){cout<<e<<" ";}cout<<endl;
#define debugm(m) printf("L%d %s is..\n",__LINE__,#m);for(auto v:m){for(auto e:v){cout<<e<<" ";}cout<<endl;}
#define debuga(m,w) printf("L%d %s is => ",__LINE__,#m);for(int x=0;x<(w);x++){cout<<(m)[x]<<" ";}cout<<endl;
#define debugaa(m,w,h) printf("L%d %s is..\n",__LINE__,#m);for(int y=0;y<(h);y++){for(int x=0;x<(w);x++){cout<<(m)[x][y]<<" ";}cout<<endl;}
#define ALL(v) (v).begin(),(v).end()
#define BIGINT 0x7FFFFFFF
#define E107 1000000007

template<typename T1,typename T2>
ostream& operator <<(ostream &o,const pair<T1,T2> p){o<<"("<<p.first<<":"<<p.second<<")";return o;}

int data[101];

inline bool kadomatu(int a,int b,int c){
    return a!=b&&b!=c&&c!=a&&((a<b && c<b)||(a>b && c>b));
}

template<typename TI>
bool allnonkadomaturetu(TI begin,TI end){
    TI it1=begin;
    TI it2=++begin;
    TI it3=++begin;
    for (;it3!=end;it1=it2,it2=it3,it3++){
        if (kadomatu(*it1,*it2,*it3)) return false;
    }
    return true;
}

int main(){
    int i,j;
    int n;

    cin >> n;

    vector<int> order(n);
    for (i=0;i<n;i++){
        order[i]=i+1;
        scanf("%d",data+i);
    }

    // ソート比較
    sort(order.begin(),order.end(),[](int l,int r){return data[l-1]<data[r-1];});

    vector<int> v(n);

    for (i=0;i<n;i++)
        v[order[i]-1]=i;

    queue<pair<int,int>> result; 
    for (i=0;i<n-1;i++){
        for (j=i;j<n;j++){
            if (v[j]==i){
                if (i!=j){
                    result.push(make_pair(i,j));
                    swap(v[i],v[j]);
                    swap(data[i],data[j]);
                    if (allnonkadomaturetu(data,data+n)) goto l_superbreak;
                }
                break;
            }
        }
    }
l_superbreak:

    cout<<result.size()<<endl;
    
    while (!result.empty()){
        printf("%d %d\n",result.front().first,result.front().second);
        result.pop();
    }
    cout<<endl;
    cin>>n;

    return 0;

}
0