日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

I:nico和niconiconi(dp)

發布時間:2024/3/12 编程问答 38 豆豆
生活随笔 收集整理的這篇文章主要介紹了 I:nico和niconiconi(dp) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

2020牛客寒假算法基礎集訓營1

傳送門

題意:

思路:

dp,dp[i]記錄當前記錄的最大值,每次遇到符合a,b,c字符串時,更新最大值即可

代碼:

#include <iostream> #include <stdio.h> #include <algorithm> #include <string.h> #include <vector> #include <math.h> #include <map> #include <queue> #include <set> using namespace std; typedef long long ll; const int maxn=3e5+50; const int inf=0x3f3f3f3f; const int mod=1e9+7; const int phi=1e9+6; ll dp[maxn]; char ch[maxn]; int main() {int n,a,b,c;scanf("%d%d%d%d",&n,&a,&b,&c);scanf("%s",ch+1);dp[0]=0;for(int i=1;i<=n;i++){dp[i]=dp[i-1];if(i>=4&&ch[i-3]=='n'&&ch[i-2]=='i'&&ch[i-1]=='c'&&ch[i]=='o')dp[i]=max(dp[i],dp[i-4]+a);if(i>=6&&ch[i-5]=='n'&&ch[i-4]=='i'&&ch[i-3]=='c'&&ch[i-2]=='o'&&ch[i-1]=='n'&&ch[i]=='i')dp[i]=max(dp[i],dp[i-6]+b);if(i>=10&&ch[i-9]=='n'&&ch[i-8]=='i'&&ch[i-7]=='c'&&ch[i-6]=='o'&&ch[i-5]=='n'&&ch[i-4]=='i'&&ch[i-3]=='c'&&ch[i-2]=='o'&&ch[i-1]=='n'&&ch[i]=='i')dp[i]=max(dp[i],dp[i-10]+c);}printf("%lld\n",dp[n]);return 0; }

總結

以上是生活随笔為你收集整理的I:nico和niconiconi(dp)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。