제출 #873601

#제출 시각아이디문제언어결과실행 시간메모리
873601Ludissey메기 농장 (IOI22_fish)C++17
37 / 100
1093 ms283020 KiB
#include "fish.h" #include <bits/stdc++.h> #define int long long using namespace std; unordered_map<int, unordered_map<int,int>> a; vector<vector<int>> fsh; vector<vector<int>> cfsh; vector<vector<int>> prfx; unordered_map<int, unordered_map<int, unordered_map<int,int>>> memo; int N,M; //x N possible //last 2N possible negatif et pas negatif //big 2 possible int dp(int x, int last, int big){ if(memo[x][last].find(big)!=memo[x][last].end()) return memo[x][last][big]; if(x==N) return 0; int mx = 0; for (auto i:fsh[x]) //O(N) { int c=0; if(i==0){ if(last<=0) c=dp(x+1, 0, 1); else if(last>0) c=dp(x+1,(-last), 1); } else if(i>=abs(last)) { if(big==0) break; c=dp(x+1, i, 1); }else if(i<abs(last)){ c=dp(x+1, i, 0); } if(x>0) { if(last>=0) { if(last<i&&i>0){ for (auto y : cfsh[x-1]){ if(y>=last&&y<i) c+=a[x-1][y]; } } if(i<last&&last>0){ for (auto y : cfsh[x]) { if(y>=i&&y<last) c+=a[x][y]; } } }else{ if(abs(last)<i&&i>0){ for (auto y : cfsh[x-1]){ if(y>=abs(last)&&y<i) c+=a[x-1][y]; } } } } mx=max(c, mx); } return memo[x][last][big]=mx; } long long max_weights(signed n, signed m, std::vector<signed> X, std::vector<signed> Y, std::vector<signed> W) { N=n; M=m; fsh.resize(N+1, vector<int>(1,0)); cfsh.resize(N+1); for (int i = 0; i < M; i++){ a[X[i]][Y[i]] = W[i]; fsh[X[i]+1].push_back(Y[i]+1); cfsh[X[i]].push_back(Y[i]); if(X[i]>0) fsh[X[i]-1].push_back(Y[i]+1); } for (int i = 0; i < N; i++) sort(fsh[i].begin(),fsh[i].end()); // N log N int p=dp(0,0,1); //(N*2N*2*N) (300*600*300*2) (108.000.000) return p; }
#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...