Submission #745740

#TimeUsernameProblemLanguageResultExecution timeMemory
745740inventiontimeCatfish Farm (IOI22_fish)C++17
9 / 100
29 ms8116 KiB
#include "fish.h" #include <bits/stdc++.h> using namespace std; #define pb push_back #define re resize #define ff first #define ss second #define all(x) (x).begin(), (x).end() #define all1(x) (x).begin()+1, (x).end() #define loop(i, n) for(int i = 0; i < n; i++) #define loop1(i, n) for(int i = 1; i <= n; i++) #define print(x) cout << #x << ": " << x << endl << flush template<class T> bool ckmin(T&a, T b) { bool B = a > b; a = min(a, b); return B; } template<class T> bool ckmax(T&a, T b) { bool B = a < b; a = max(a, b); return B; } typedef long long ll; typedef vector<int> vi; const int inf = 1e17; ll max_weights(int n, int m, vi x, vi y, vi w) { ll fish[n+1]; loop(i, n+1) fish[i] = 0; loop(i, m) fish[x[i]+1] = w[i]; ll dp[n+1][2][2]; dp[0][0][0] = -inf; dp[0][0][1] = 0; dp[0][1][0] = -inf; dp[0][1][1] = 0; loop1(i, n) { dp[i][0][0] = max(dp[i-1][0][0], dp[i-1][1][0]); dp[i][0][1] = max(dp[i-1][1][0], dp[i-1][0][0]) + fish[i]; dp[i][1][0] = max(dp[i-1][0][1], dp[i-1][1][1]); dp[i][1][1] = dp[i-1][0][1] + fish[i]; } return max({dp[n][0][0], dp[n][0][1], dp[n][1][0]}); }

Compilation message (stderr)

fish.cpp:24:17: warning: overflow in conversion from 'double' to 'int' changes value from '1.0e+17' to '2147483647' [-Woverflow]
   24 | const int inf = 1e17;
      |                 ^~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...