結果
問題 | No.387 ハンコ |
ユーザー | umezo |
提出日時 | 2024-04-10 23:53:47 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 786 bytes |
コンパイル時間 | 3,173 ms |
コンパイル使用メモリ | 257,064 KB |
実行使用メモリ | 11,136 KB |
最終ジャッジ日時 | 2024-10-02 21:06:10 |
合計ジャッジ時間 | 11,387 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; #define rep(i,n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(),v.end() typedef long long ll; template <class T> using V=vector<T>; template <class T> using VV=V<V<T>>; //B(n,V<int>(n)) int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); int n; cin>>n; V<int> A(n),B(n); rep(i,n) cin>>A[i]; rep(i,n) cin>>B[i]; reverse(ALL(A)),reverse(ALL(B)); bitset<200000> b,res; rep(i,n) if(B[i]) b.set(i); map<int,V<int>> m; rep(i,n) m[A[i]].push_back(i); for(auto [a,C]:m){ int c=C.size(); bitset<200000> tmp,d; rep(i,c){ d=(b<<C[i]); tmp|=d; } res^=tmp; } int ans=0; rep(i,2*n-1){ if(res.test(i)) cout<<"ODD\n"; else cout<<"EVEN\n"; } return 0; }