結果

問題 No.2895 Zero XOR Subset
ユーザー shangtian551shangtian551
提出日時 2024-09-29 01:27:56
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,860 bytes
コンパイル時間 4,478 ms
コンパイル使用メモリ 281,336 KB
実行使用メモリ 82,688 KB
最終ジャッジ日時 2024-09-29 01:28:09
合計ジャッジ時間 11,425 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 WA -
testcase_03 AC 2 ms
6,816 KB
testcase_04 WA -
testcase_05 AC 2 ms
6,816 KB
testcase_06 WA -
testcase_07 AC 2 ms
6,816 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 2 ms
6,816 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 2 ms
6,816 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 2 ms
6,820 KB
testcase_21 AC 2 ms
6,820 KB
testcase_22 WA -
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 2 ms
6,816 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 2 ms
6,816 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 2 ms
6,816 KB
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <bits/stdc++.h>
using namespace std;
#define endl "\n"
#define i64 long long
const int N=2e5+10;

void solved(){
    int n;
    cin>>n;
    //cout<<n<<endl;
    vector<vector<int>> a(100,vector<int>(n+3));
    vector<int> d(n+1);
    for(int i=1;i<=n;i++){
        i64 x;
        cin>>x;
        d[i]=x;
        for(int j=0;j<=59;j++){
            if((x>>j)&1) a[j+1][i]=1;
        }
    }
    //for(int j=0;j<=59;j++) a[n+1][j]=0;
    /*
       for(int j=1;j<=n;j++){
                for(int i=1;i<=20;i++) cout<<a[i][j]<<" \n"[i==20];
            }
            */
    auto cluct=[&](int n){
       for(int i=1;i<=n;i++){
         int max=i;
         for(int j=i+1;j<=60;j++){
              if(fabs(a[j][i])>fabs(a[max][i])) max=j;
         }
         for(int j=1;j<=n+1;j++) {
            swap(a[max][j],a[i][j]);
            //swap(d[max],d[i]);
         }
         if(a[i][i]==0){
            vector<int> ans;
            for(int j=i;j>=1;j--){
                if(a[j][i]==1){
                    ans.push_back(j);
                }
            }
            /*
            cout<<";;;"<<endl;
            for(int j=1;j<=n;j++){
                for(int i=1;i<=20;i++) cout<<a[i][j]<<" \n"[i==20];
            }
            */
            ans.push_back(i);
            cout<<ans.size()<<endl;
            for(auto v:ans) cout<<v<<" ";
            //cout<<i<<endl;
            return ;
         }
         for(int j=1;j<=60;j++){
            if(j!=i){
                int temp=a[j][i]/a[i][i];
                for(int k=1;k<=n+1;k++) a[j][k]-=a[i][k]*temp;
            }
         }
     }
     cout<<"-1"<<endl;
    
   
    
    };
    if(n>=61) cluct(61);
    else cluct(n);
    
}
signed main(){
     //ios::sync_with_stdio(false);
     //cin.tie(0);
     //cout.tie(0);
     int t=1;
     //cin>>t;
     while(t--) solved();
}
0