# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
625980 | 2022-08-11T05:29:43 Z | sword060 | 메기 농장 (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]); }