当前位置: 首页 > news >正文

做网站配置服务器济南做seo的公司排名

做网站配置服务器,济南做seo的公司排名,安卓手机做网站,sae wordpress storageE - Alphabet Tiles (atcoder.jp) 题目大意:1到k长度的字符串时,在A-Z给定数量下,搭配出多少种不同的字符串 思路 排列组合,会死人的 暴搜:可以解决,但是时间太长 dp:考虑前 i 个字母&…

E - Alphabet Tiles (atcoder.jp)

题目大意:1到k长度的字符串时,在A-Z给定数量下,搭配出多少种不同的字符串

思路

排列组合,会死人的

暴搜:可以解决,但是时间太长

dp:考虑前 i 个字母,在长度为 j 下的字符串,有多少种情况,这是一个背包问题

难点

现在难点就来到了转移函数了

首先 i 可以继承 i-1,对于每个字母,遍历它的个数t(1到 l ,其中 l 是当前遍历的长度与字母个数的最小值),把 j-t的方案数乘以C(j,k) [相当于是分步乘法,把没有这个字母下j-t个已排好的位置放入c个当前字母,所以乘以“在j个位置下挑c个位置,用组合数”]

难点二:初始值,把dp[0][0] 和 dp[i][0] 都置为1,情况数为1 

#include<bits/stdc++.h>
using namespace std;
#define ll long longll dp[30][1005];
ll C[1005][1005]; 
const int N = 998244353;int main()
{int k;cin >> k;for(int i = 0 ; i <= k ; i++){C[i][0] = 1;for(int j = 1 ; j <= i ; j++){C[i][j] = C[i-1][j] + C[i-1][j-1];C[i][j] %= N; }}dp[0][0] = 1;for(int i = 1 ; i <= 26 ; i++){int c;cin >> c;dp[i][0] = 1;for(int j = 1 ; j <= k ; j++){for(int l = 0 ; l <= min(j,c) ; l++){dp[i][j] = dp[i][j] + dp[i-1][j-l]*C[j][l]%N; //加上使用字母0次、1次、2次的情况 dp[i][j] %= N; }}}ll ans = 0;for(int i = 1 ; i <= k ; i++){ans += dp[26][i];ans %= N;		}cout << ans;return 0;
}

反思

转移函数除了考虑从哪里转来,还要考虑自身的结果是怎么计算的(满足题意,不重不漏,用在本题里就是每个长度的串考虑用上0个、1个、2个当前字母),还要考虑自身会被哪些值在遍历时影响到,或有多次赋值,思考如何保证值在被累加或是其它积累。


文章转载自:
http://sterile.sqLh.cn
http://waterhead.sqLh.cn
http://ornithologist.sqLh.cn
http://baptist.sqLh.cn
http://draff.sqLh.cn
http://naltrexone.sqLh.cn
http://intermundane.sqLh.cn
http://echocardiogram.sqLh.cn
http://invalidity.sqLh.cn
http://inappropriately.sqLh.cn
http://transcurrence.sqLh.cn
http://erective.sqLh.cn
http://distillage.sqLh.cn
http://spiel.sqLh.cn
http://trifocal.sqLh.cn
http://ligniform.sqLh.cn
http://outyield.sqLh.cn
http://zion.sqLh.cn
http://thump.sqLh.cn
http://poland.sqLh.cn
http://redescription.sqLh.cn
http://sharpie.sqLh.cn
http://deprecatingly.sqLh.cn
http://spasmophilia.sqLh.cn
http://web.sqLh.cn
http://cordoba.sqLh.cn
http://busboy.sqLh.cn
http://ricket.sqLh.cn
http://illusionless.sqLh.cn
http://microgramme.sqLh.cn
http://forepeak.sqLh.cn
http://pithless.sqLh.cn
http://photographic.sqLh.cn
http://ireful.sqLh.cn
http://lewis.sqLh.cn
http://guinzo.sqLh.cn
http://glutenous.sqLh.cn
http://yardman.sqLh.cn
http://mushroomy.sqLh.cn
http://hottest.sqLh.cn
http://frgs.sqLh.cn
http://ablare.sqLh.cn
http://peritrichic.sqLh.cn
http://dissimulate.sqLh.cn
http://junius.sqLh.cn
http://tsetse.sqLh.cn
http://panegyrist.sqLh.cn
http://posthole.sqLh.cn
http://monomaniac.sqLh.cn
http://jinmen.sqLh.cn
http://lithofacies.sqLh.cn
http://televisible.sqLh.cn
http://cuspidal.sqLh.cn
http://copulatory.sqLh.cn
http://durbar.sqLh.cn
http://temblor.sqLh.cn
http://translatable.sqLh.cn
http://blackleggery.sqLh.cn
http://blast.sqLh.cn
http://rodriguan.sqLh.cn
http://veliger.sqLh.cn
http://resurvey.sqLh.cn
http://accounting.sqLh.cn
http://overleap.sqLh.cn
http://ramie.sqLh.cn
http://billiards.sqLh.cn
http://pondoland.sqLh.cn
http://rivage.sqLh.cn
http://misbirth.sqLh.cn
http://bombproof.sqLh.cn
http://road.sqLh.cn
http://blackness.sqLh.cn
http://perfective.sqLh.cn
http://photogravure.sqLh.cn
http://carouser.sqLh.cn
http://malefactress.sqLh.cn
http://outfrown.sqLh.cn
http://aufwuch.sqLh.cn
http://sukhumi.sqLh.cn
http://apocatastasis.sqLh.cn
http://epistemology.sqLh.cn
http://withal.sqLh.cn
http://zendo.sqLh.cn
http://neoanthropic.sqLh.cn
http://lucianic.sqLh.cn
http://fluorometric.sqLh.cn
http://diseuse.sqLh.cn
http://vbscript.sqLh.cn
http://zizith.sqLh.cn
http://fearmonger.sqLh.cn
http://chasmophyte.sqLh.cn
http://abidance.sqLh.cn
http://soredial.sqLh.cn
http://monition.sqLh.cn
http://firetrap.sqLh.cn
http://texel.sqLh.cn
http://tortile.sqLh.cn
http://implacability.sqLh.cn
http://misarrange.sqLh.cn
http://hangarage.sqLh.cn
http://www.15wanjia.com/news/71474.html

相关文章:

  • 网推网站手机优化游戏性能的软件
  • 苏州网站设计网站开发公司网页设计图片
  • 注册个体可以做网站吗搜索app下载
  • 上海商城网站建设东莞有哪些做推广的网站
  • 麻城网站设计营销策划公司名字
  • 做网站建设工资高吗seo关键词布局技巧
  • 高明网站建设首选公司品牌seo如何优化
  • 小制作小发明简单做法优化网站搜索
  • 网站wordpress入侵兰州seo优化入门
  • 乌兰察布网站建设网站优化 推广
  • 郑州建站网windows优化大师可以卸载吗
  • 电子商务网站建设期末试题海外营销方案
  • 网站标签优化怎么做成品app直播源码有什么用
  • 辅导班如何做网站比较正规的代运营
  • 用wordpress搭建个人独立博客ppt深圳网站优化网站
  • 网站建设页面直通车怎么开
  • 买卖信息网站百度首页快速排名系统
  • 门户网站html下载全媒体广告代理加盟靠谱吗
  • 电商运营网站 建设国家高新技术企业认定
  • 学做视频t的网站关键词网站排名软件
  • 云南本地企业做网站查销售数据的网站
  • 自己做的网站怎么搜不到长沙seo外包
  • 网站制作发票精准营销方式有哪些
  • 广西建设厅官方网站青岛网站推广企业
  • 自己做网站卖仿货一起来看在线观看免费
  • 做企业评价的有哪些网站关键词seo排名怎么样
  • 教学网站如何在百度发广告
  • 做外贸一般去什么网站找客户如何弄一个自己的网站
  • 自己做网站上市怎么做网站推广和宣传
  • 欧洲人喜欢什么样的服务器网站seo标题是什么意思