Submission #1025093

#TimeUsernameProblemLanguageResultExecution timeMemory
1025093YassirSalamaHorses (IOI15_horses)C++17
17 / 100
19 ms18520 KiB
#include<bits/stdc++.h> using namespace std; #define F first #define S second #define all(v) v.begin(),v.end() #define ll long long template<typename T> void dbg_out(const T& t){ cout<<t<<endl; } template<typename T,typename... Args> void dbg_out(const T& t,const Args&... args){ cout<<t<<" , "; dbg_out(args...); } #define dbg(...) cout<<"("<<#__VA_ARGS__<<"): ";dbg_out(__VA_ARGS__); const int mod=1e9+7; const int maxn=2000; int n; vector<int> x; vector<int> y; int dp[maxn][2]; int solve(int i,int j){ if(i==n) return 0; if(j==0) return 0; if(dp[i][j]!=-1) return dp[i][j]; int h=j; int &ans=dp[i][j]; ans=0; for(int k=i;k<n;k++){ h*=x[k]; ans=max(ans,solve(k+1,1)+(h-1)*y[k]); ans=max(ans,solve(k+1,0)+h*y[k]); } return ans; } void clear(){ for(int j=0;j<n;j++){ dp[j][0]=-1; dp[j][1]=-1; } } int init(int N, int X[], int Y[]) { n=N; x.resize(n); y.resize(n); for(int i=0;i<n;i++){ x[i]=X[i]; } for(int i=0;i<n;i++){ y[i]=Y[i]; } clear(); return solve(0,1); } int updateX(int pos, int val) { x[pos]=val; clear(); return solve(0,1); } int updateY(int pos, int val) { y[pos]=val; clear(); return solve(0,1); } #ifdef IOI static char _buffer[1024]; static int _currentChar = 0; static int _charsNumber = 0; static FILE *_inputFile, *_outputFile; static inline int _read() { if (_charsNumber < 0) { exit(1); } if (!_charsNumber || _currentChar == _charsNumber) { _charsNumber = (int)fread(_buffer, sizeof(_buffer[0]), sizeof(_buffer), _inputFile); _currentChar = 0; } if (_charsNumber <= 0) { return -1; } return _buffer[_currentChar++]; } static inline int _readInt() { int c, x, s; c = _read(); while (c <= 32) c = _read(); x = 0; s = 1; if (c == '-') { s = -1; c = _read(); } while (c > 32) { x *= 10; x += c - '0'; c = _read(); } if (s < 0) x = -x; return x; } int main() { // _inputFile = fopen("horses.in", "rb"); // _outputFile = fopen("horses.out", "w"); int N; cin>>N; int *X = (int*)malloc(sizeof(int)*(unsigned int)N); int *Y = (int*)malloc(sizeof(int)*(unsigned int)N); for (int i = 0; i < N; i++) { cin>>X[i]; } for (int i = 0; i < N; i++) { cin>>Y[i]; } cout<<init(N,X,Y)<<endl; int M; // M = _readInt(); cin>>M; for (int i = 0; i < M; i++) { int type; int pos; int val; cin>>type>>pos>>val; if (type == 1) { cout<<updateX(pos,val)<<endl; // fprintf(_outputFile,"%d\n",updateX(pos,val)); } else if (type == 2) { cout<<updateY(pos,val)<<endl; // fprintf(_outputFile,"%d\n",updateY(pos,val)); } } return 0; } #endif
#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...