結果

問題 No.1896 Arrays and XOR Procedure 2
ユーザー yamakeyamake
提出日時 2022-04-08 22:21:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,377 bytes
コンパイル時間 1,665 ms
コンパイル使用メモリ 171,908 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 07:53:51
合計ジャッジ時間 5,350 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
#define rep(i,n) for(int i=0;i<n;++i)
#define rep1(i,n) for(int i=1;i<=n;++i)
#define rrep(i,n) for(int i=n-1;i>=0;--i)
#define debug(output) if(debugFlag)cout<<#output<<"= "<<output<<"\n";
using lint = long long;
typedef pair<int,int> P;
const bool debugFlag=true;
const lint linf=1.1e18;const int inf=1.01e9;
constexpr int MOD=1000000007;
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(a > b){ a = b; return 1; } return 0; }

signed main(){
  int n;cin>>n;
  vector<int> a(n),b(n);
  rep(i,n)cin>>a[i];
  rep(i,n)cin>>b[i];
  int f=max(*max_element(a.begin(),a.end()),*max_element(b.begin(),b.end()));
  while(f!=(f&(-f)))f-=(f&(-f));
  int ai=-1;int bi=-1;
  rep(i,n){
    if(a[i]&f)ai=i;
    if(b[i]&f)bi=i;
  }
  vector<array<int,3>> res;
  if(ai==-1){
    ai=0;
    a[0]^=b[bi];
    res.push_back({1,1,bi+1});
  }
  else{
    bi=0;
    b[0]^=a[ai];
    res.push_back({2,1,ai+1});
  }
  rep(i,n){
    if((a[i]&f)>0&&i!=ai){
      a[i]^=b[bi];
      res.push_back({1,i+1,bi+1});
    }
    if((b[i]&f)==0){
      b[i]^=a[ai];
      res.push_back({2,ai+1,i+1});
    }
  }
  a[ai]^=b[bi];
  res.push_back({1,ai+1,bi+1});
  cout<<res.size()<<"\n";
  rep(i,res.size()){
    rep(j,3)cout<<res[i][j]<<" ";
    cout<<"\n";
  }
  return 0;
}
0