結果

問題 No.387 ハンコ
ユーザー beetbeet
提出日時 2018-11-25 21:56:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,033 ms / 5,000 ms
コード長 763 bytes
コンパイル時間 2,465 ms
コンパイル使用メモリ 207,148 KB
実行使用メモリ 8,448 KB
最終ジャッジ日時 2024-06-07 14:27:49
合計ジャッジ時間 12,388 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,016 ms
8,448 KB
testcase_01 AC 1,033 ms
8,432 KB
testcase_02 AC 980 ms
7,052 KB
testcase_03 AC 971 ms
7,040 KB
testcase_04 AC 505 ms
6,784 KB
testcase_05 AC 722 ms
7,532 KB
testcase_06 AC 887 ms
8,064 KB
testcase_07 AC 987 ms
7,168 KB
testcase_08 AC 980 ms
7,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using Int = long long;
template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}

//INSERT ABOVE HERE
signed main(){
  int n;
  cin>>n;
  vector<int> a(n),b(n);
  for(int i=0;i<n;i++) cin>>a[i];
  for(int i=0;i<n;i++) cin>>b[i];
  const int MAX = 1e5 + 100;
  vector<vector<int> > vs(MAX);
  for(int i=0;i<n;i++) vs[a[i]].emplace_back(i);

  using BS = bitset<MAX*2>;
  BS ans(0),ext(0);
  for(int i=0;i<n;i++) ext[i]=b[i];
    
  for(int i=0;i<MAX;i++){
    BS res(0);
    for(int x:vs[i]) res|=ext<<x;
    ans^=res;
  }
  
  for(int i=0;i<n*2-1;i++)
    cout<<(ans[i]?"ODD":"EVEN")<<"\n";
  cout<<flush;
  return 0;
}
0