Submission #420439

#TimeUsernameProblemLanguageResultExecution timeMemory
420439Nicholas_PatrickCigle (COI21_cigle)C++17
20 / 100
1091 ms1228 KiB
#include <cstdio> #include <queue> #include <algorithm> using namespace std; int n; vector<vector<int>> dp; int qry(int x, int y){ int ret=0; for(int i=x; i>=0; i--)for(int j=y; j>=0; j--) ret=max(ret, dp[i][j]); return ret; } void upd(int x, int y, int v){ // for(int i=x; i<n; i+=i+1&~i)for(int j=y; j<n; j+=j+1&~j) dp[x][y]=max(dp[x][y], v); } int main(){ scanf("%d", &n); vector<int> d(n); for(int& i : d) scanf("%d", &i); dp.assign(n, vector<int>(n, 0)); /* dp[x][y] x: last brick laid y: earliest brick in last row y≤x */ for(int i=1; i<n; i++){ vector<int> suffsum, prefsum; for(int j=i; j--;){ if(suffsum.empty()){ suffsum.push_back(d[j]); }else{ suffsum.push_back(d[j]+suffsum.back()); } } for(int j=i; j<n; j++){ if(prefsum.empty()){ prefsum.push_back(d[j]); }else{ prefsum.push_back(d[j]+prefsum.back()); } } for(int j=0, k=0, matches=0; j<prefsum.size(); j++){ while(k+1<suffsum.size() and suffsum[k]<prefsum[j]) k++; if(prefsum[j]==suffsum[k]){ matches++; if(i+j+1<n){ for(int p=0; p<i; p++)for(int q=0; q<i-k-1; q++) dp[i+j+1][i]=max(dp[i+j+1][i], dp[p][q]+matches); // int maxprev=0; // for(int p=0; p<i; p++)for(int q=0; q<i-k-1; q++) // maxprev=max(maxprev, dp[p][q]); // dp[i+j+1][i]=max(dp[i+j+1][i], maxprev+matches); } } } } int ans=0; for(auto& i : dp) ans=max(ans, *max_element(i.begin(), i.end())); printf("%d\n", ans); }

Compilation message (stderr)

cigle.cpp: In function 'int main()':
cigle.cpp:46:33: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   46 |   for(int j=0, k=0, matches=0; j<prefsum.size(); j++){
      |                                ~^~~~~~~~~~~~~~~
cigle.cpp:47:13: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   47 |    while(k+1<suffsum.size() and suffsum[k]<prefsum[j])
      |          ~~~^~~~~~~~~~~~~~~
cigle.cpp:19:7: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   19 |  scanf("%d", &n);
      |  ~~~~~^~~~~~~~~~
cigle.cpp:22:8: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   22 |   scanf("%d", &i);
      |   ~~~~~^~~~~~~~~~
#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...