# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
661046 | mychecksedad | 메기 농장 (IOI22_fish) | C++17 | 85 ms | 86064 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
#define pb push_back
const int N = 1e5 + 100;
ll dp[N][15][2], a[N][2], s[N], pref[N][15], dp_pref[N][15], dp_suf[N][15], dp_pref_max[N][15], dp_suf_max[N][15];
long long max_weights(int n, int m, std::vector<int> x, std::vector<int> y, std::vector<int> w){
bool case1 = 1, case2 = 1;
for(int i = 0; i < m; ++i){
if(x[i] % 2) case1 = 0;
if(x[i] > 1) case2 = 0;
}
if(case1){
ll ans = 0;
for(int i = 0; i < m; ++i) ans += w[i];
return ans;
}
if(case2){
ll ans1 = 0, ans2 = 0;
for(int i = 0; i < m; ++i){
if(x[i] == 0) ans1 += w[i];
else ans2 += w[i];
}
if(n == 2)
return max(ans1, ans2);
else{
ll best = 0, sum = 0;
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |