結果

問題 No.5020 Averaging
ユーザー gucci0512gucci0512
提出日時 2024-02-25 13:32:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 2,740 bytes
コンパイル時間 4,778 ms
コンパイル使用メモリ 264,580 KB
実行使用メモリ 6,548 KB
スコア 12,719,802
最終ジャッジ日時 2024-02-25 13:32:23
合計ジャッジ時間 12,001 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
testcase_47 RE -
testcase_48 RE -
testcase_49 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
#define rep(i,a,b) for(int i=a;i<b;i++)
#define rrep(i,a,b) for(int i=b-1;i>=a;i--)
#define all(x) (x).begin(),(x).end()
#define pb(x) push_back(x);
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a = b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a = b; return 1; } return 0; }
typedef long long ll;
typedef long double lld;
using namespace std;
using namespace atcoder;

const double TIME_LIMIT = 0.95;
const ll BASE = 500000000000000000;

clock_t start=clock();
clock_t process=clock();
// random_device seed_gen;
// mt19937 engine(seed_gen());
mt19937 engine(0);
typedef pair<ll,ll> P;

const int N = 45;
const int M = 50;
ll A[N],B[N];

void Input(){
    int _n;cin >> _n;
    rep(i,0,N)cin >> A[i] >> B[i];
}

struct Solution{
    int X;
    vector<int> u,v;
    
    P Simulate(){
        ll a[N],b[N];rep(i,0,N)a[i]=A[i],b[i]=B[i];
        rep(i,0,X){
            ll tmp1=(a[u[i]]+a[v[i]])/2;
            ll tmp2=(b[u[i]]+b[v[i]])/2;
            a[u[i]]=tmp1;a[v[i]]=tmp1;
            b[u[i]]=tmp2;b[v[i]]=tmp2;
        }
        return P(a[0],b[0]);
    }

    void Output(){
        cout << X << endl;
        rep(i,0,X)cout << u[i]+1 << " " << v[i]+1 << endl;
    }
};

Solution InitSolve(){
    Solution res_sol;
    rep(i,0,M){
        while(true){
            int x=random()%N;
            int y=random()%N;
            if(x==y)continue;
            res_sol.u.pb(x);
            res_sol.v.pb(y);
            res_sol.X++;
            break;
        }
    }
    return res_sol;
}

Solution HillClimbing(Solution sol){
    Solution now_sol=sol;
    P now_score=now_sol.Simulate();
    ll now_v1=abs(BASE-now_score.first);
    ll now_v2=abs(BASE-now_score.second);
    while((double)(clock()-start)/CLOCKS_PER_SEC<TIME_LIMIT){
        int idx=random()%M;
        int x=random()%N;
        int y=random()%N;
        while(x==y){
            y=random()%N;
        }
        int pre_x=now_sol.u[idx];
        int pre_y=now_sol.v[idx];
        now_sol.u[idx]=x;
        now_sol.v[idx]=y;
        P next_score=now_sol.Simulate();
        ll next_v1=abs(BASE-next_score.first);
        ll next_v2=abs(BASE-next_score.second);
        if(max(now_v1,now_v2)>max(next_v1,next_v2)){
            now_v1=next_v1;
            now_v2=next_v2;
            now_score=next_score;
        }
        else{
            now_sol.u[idx]=pre_x;
            now_sol.v[idx]=pre_y;
        }
    }
    return now_sol;
}

int main(void){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    Input();
    Solution sol=InitSolve();
    P res=sol.Simulate();
    sol=HillClimbing(sol);
    cerr << res.first << " " << res.second << endl;
    sol.Output();
}
0