Submission #294876

#TimeUsernameProblemLanguageResultExecution timeMemory
294876crossing0verVisiting Singapore (NOI20_visitingsingapore)C++17
10 / 100
29 ms29944 KiB
#include<bits/stdc++.h> #define ll long long #define pii pair<int,int> using namespace std; int k,n,m,a,b,hap[5005],s[5005],t[5005]; int dp[5005][5005][2]; main() { cin >> k >> n >> m >> a >> b; for (int i = 1; i <= k; i++) cin >> hap[i]; for (int i = 1; i <= n; i++) cin >> s[i]; for (int i = 1; i <= m; i++) cin >> t[i]; int ans = a + b*m; const int inf = -1e6; // for (int j = 1; j <= m ;j ++) dp[0][j][1] = inf,dp[0][j][0] = a + b*j; // for (int i = 1; i <= n; i++) // for (int j = 1; j <= m; j++) // dp[i][j][0] = dp[i][j][1] = inf; for (int i = 1; i <= n; i++) for (int j = 1; j <= m; j++) { // dp[i][j]_ taken j-th one // 0 _ last not used // 1 _ last used // dp[i][j][0] = a + j*b; dp[i][j][0] = a + j*b + b+a; if (j!=1) dp[i][j][0] = max(dp[i][j][0],dp[i][j-1][1] + a + b); // if (i>1) // dp[i][j][0] = max(dp[i][j][0],dp[i-1][j][0]+b); // else // dp[i][j][0] = max(dp[i][j][0],dp[i-1][j][0]+b); if (j != 1) dp[i][j][0] = max(dp[i][j][0],dp[i][j-1][0]+b); dp[i][j][0] = max(dp[i][j][0],dp[i-1][j][1] + a + b + b + a); //dp[i][j][0] = max(dp[i-1][j][0], dp[i-1][j][1] + a + b); ans = max(ans,dp[i][j][0] + b*(m-j)); if (s[i] != t[j]) dp[i][j][1] = inf; else { int adit = hap[ t[j] ]; dp[i][j][1] = (j > 1? a : 0) + (j-1)*b + adit; dp[i][j][1] = max(dp[i][j][1],adit + dp[i-1][j-1][1]); //dp[i][j][1] = max(dp[i][j][1],adit + dp[i-1][j-1][1]); dp[i][j][1] = max(dp[i][j][1],adit + dp[i-1][j-1][0] ); ans = max(ans,dp[i][j][1] + (m-j)*b + (j != m ? a : 0)); } } // cout << dp[5][1][1];exit(0); cout << ans; /* if (m <= n) { ans = max(ans, hap[1]*m); }else { ans = max(ans,hap[1]*n + (m-n)*B + A); } cout << ans;*/ }

Compilation message (stderr)

VisitingSingapore.cpp:7:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    7 | main() {
      |      ^
#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...