# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
625980 | 2022-08-11T05:29:43 Z | sword060 | Catfish Farm (IOI22_fish) | C++17 | 0 ms | 0 KB |
#include <bits/stdc++.h> #include "fish.h" using namespace std; long long max_weights(int x,int k,vector<int> a,vector<int> b,vector<int> c){ long long p[5]; for(int i=0;i<4;i++)p[i]=0; for(int i=0;i<k;i++)p[b[i]&1]+=c[i]; return max(p[0],p[1]); }