Submission #566204

#TimeUsernameProblemLanguageResultExecution timeMemory
5662048e7Copy and Paste 3 (JOI22_copypaste3)C++17
1 / 100
1 ms212 KiB
//Challenge: Accepted #include <bits/stdc++.h> using namespace std; #ifdef zisk void debug(){cout << endl;} template<class T, class ... U> void debug(T a, U ... b){cout << a << " ", debug(b...);} template<class T> void pary(T l, T r) { while (l != r) cout << *l << " ", l++; cout << endl; } #else #define debug(...) 0 #define pary(...) 0 #endif #define ll long long #define maxn 205 #define pii pair<int, int> #define ff first #define ss second #define io ios_base::sync_with_stdio(0);cin.tie(0); const ll inf = 1LL<<60; bool same[maxn][maxn][maxn]; int nxt[maxn][maxn]; //ll dp[maxn][maxn][maxn][maxn]; int main() { io int n; cin >> n; string s; cin >> s; ll A, B, C; cin >> A >> B >> C; ll ans = 3* A; if (s[0] == s[1] || s[1] == s[2] || s[2] == s[0]) { ans = min(ans, A + B + 2 * C + A); } if (s[0] == s[1] && s[1] == s[2]) ans = min(ans, A + B + 3 * C); cout << ans << endl; return 0; /* for (int len = 1;len < n;len++) { for (int i = 0;i <= n - len;i++) { same[len][i][i] = 1; for (int j = i + 1;j <= n - len;j++) { if (s.substr(i, len) == s.substr(j, len)) { same[len][i][j] = same[len][j][i] = 1; if (!nxt[len][i]) nxt[len][i] = j; } } } } for (int i = 0;i <= n;i++) { for (int j = 0;j <= n;j++) { g[i][j] = inf; for (int k = 0;k <= n;k++) { for (int l = 0;l <= n;l++) dp[i][j][k][l] = inf; } } } ll ans = inf; dp[0][0][0][0] = 0; auto to = [&] (int i, int j, int k,int l, ll v) { dp[i][j][k][l] = min(dp[i][j][k][l], v); }; for (int len = 0;len <= n;len++) { for (int i = 0;i <= n - len;i++) { int j = i + len; for (int k = 0;k <= j - i + 1;k++) { if (dp[i][j][k] == inf) continue; to(i, j+1, 0, dp[i][j][k] + A); if (k && nxt[k][j - k] != 0) { to(i, nxt[k][j-k] + k, dp[i][j][k] + C + A * (nxt[k][j-k] - j)); } g[i][j] = min(g[i][j], dp[i][j][k]); } } } */ }
#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...