nico和niconiconi
生活随笔
收集整理的這篇文章主要介紹了
nico和niconiconi
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
原題地址:https://ac.nowcoder.com/acm/contest/3002/I
解題思路
一道中規中矩的動態規劃,定義一個dp數組,儲存每一個字母下的最大分數,最后輸出dp[n]
AC代碼
#include <iostream> #include <algorithm> using namespace std; const int maxn = 300000 + 10; char str[maxn]; typedef long long ll; ll dp[maxn];string substring(int a, int b) {string res;for (int i = a; i <= b; i++){res += str[i];}return res; }ll me_max(ll a,ll b) {if(a>b) return a;else return b; }int main() {//動態規劃int n, a, b, c;scanf("%d%d%d%d%s", &n, &a, &b, &c, str + 1);dp[0] = 0;for (int i = 1; i <= n; i++){dp[i] = dp[i - 1];if (i >= 4 && substring(i - 3, i) == "nico"){ll x = dp[i - 4] + a;dp[i] = me_max(x, dp[i]);}if (i >= 6 && substring(i - 5, i) == "niconi"){ll x = dp[i - 6] + b;dp[i] = me_max(x, dp[i]);}if (i >= 10 && substring(i - 9, i) == "niconiconi"){ll x = dp[i - 10] + c;dp[i] = me_max(x, dp[i]);}}cout<<dp[n];return 0; }總結
以上是生活随笔為你收集整理的nico和niconiconi的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 如何制作动画效果的文字图片?教你一键合成
- 下一篇: 你可曾知道,Java为什么需要虚拟机?