結果

問題 No.130 XOR Minimax
ユーザー ShibuyapShibuyap
提出日時 2020-01-28 10:40:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 75 ms / 5,000 ms
コード長 1,238 bytes
コンパイル時間 1,946 ms
コンパイル使用メモリ 171,028 KB
実行使用メモリ 23,820 KB
最終ジャッジ日時 2024-09-12 22:55:13
合計ジャッジ時間 3,509 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
15,204 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 47 ms
23,820 KB
testcase_05 AC 75 ms
23,732 KB
testcase_06 AC 55 ms
23,648 KB
testcase_07 AC 67 ms
23,816 KB
testcase_08 AC 72 ms
23,640 KB
testcase_09 AC 11 ms
8,112 KB
testcase_10 AC 17 ms
11,316 KB
testcase_11 AC 52 ms
20,772 KB
testcase_12 AC 6 ms
6,948 KB
testcase_13 AC 44 ms
18,252 KB
testcase_14 AC 68 ms
21,448 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 48 ms
16,648 KB
testcase_17 AC 50 ms
19,440 KB
testcase_18 AC 54 ms
19,476 KB
testcase_19 AC 63 ms
19,584 KB
testcase_20 AC 31 ms
12,496 KB
testcase_21 AC 67 ms
21,084 KB
testcase_22 AC 15 ms
8,060 KB
testcase_23 AC 6 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); ++i)
#define srep(i,s,t) for (int i = s; i < t; ++i)
#define drep(i,n) for(int i = (n)-1; i >= 0; --i)
using namespace std;
typedef long long int ll;
typedef pair<int,int> P;
#define yn {puts("Yes");}else{puts("No");}
#define MAX_N 100005

int n;
ll a[MAX_N];
int f[MAX_N][50];
const ll INF = 1234567812345;
ll two[50];

ll dfs(int l, int r, int d, ll res){
    if(l == r)return INF;

    int m = -1;
    srep(i,l,r){
        if(f[i][d] == 1 && m == -1){
            m = i;
        }
    }
    if(m == -1) m = r;

    if(d == 0){
        if(m == l || m == r){
            return res;
        }else{
            return res + 1;
        }
    }

    if(m == l){
        return dfs(l,r,d-1,res);
    }else if(m == r){
        return dfs(l,r,d-1,res);
    }else{
        res += two[d];
        return min(dfs(l,m,d-1,res), dfs(m,r,d-1,res));
    }

}

int main() {
    cin >> n;
    rep(i,n)cin >> a[i];
    sort(a,a+n);
    rep(i,n){
        ll a_ = a[i];
        rep(j,50){
            f[i][j] = a_ % 2;
            a_ /= 2;
        }
    }
    two[0] = 1;
    srep(i,1,50)two[i] = two[i-1] * 2;

    ll ans = dfs(0, n, 40, 0);

    cout << ans << endl;
    return 0;
}
 
 
0