博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【luogu2747】 [USACO5.4]周游加拿大Canada Tour[动态规划]
阅读量:4963 次
发布时间:2019-06-12

本文共 939 字,大约阅读时间需要 3 分钟。

就记得f[1][1]的时候要初始化为1 忘了ans也要设为1 直接弄的0美滋滋

把它看作两个人同时从左边出发 然后dp就好了 可以去了gai一下floyd求最大环,最小环 和这题还是有点区别

1 #include
2 using namespace std; 3 #define ll long long 4 #define rg register 5 const int N=100,M=60000; 6 int n,v,ans=1,mp[N+5][N+5],f[N+5][N+5]; 7 template
void rd(t &x) 8 { 9 x=0;int w=0;char ch=0;10 while(!isdigit(ch)) w|=ch=='-',ch=getchar();11 while(isdigit(ch)) x=(x<<1)+(x<<3)+(ch^48),ch=getchar();12 x=w?-x:x;13 }14 15 map
a;16 17 int main()18 {19 //freopen("tour.in","r",stdin);20 //freopen("tour.out","w",stdout);21 rd(n),rd(v);22 memset(f,0,sizeof(f));23 f[1][1]=1;24 for(int i=1;i<=n;++i) {
string x;cin>>x;a[x]=i;}25 for(rg int i=1;i<=v;++i)26 {27 string x,y;cin>>x>>y;28 int u=a[x],v=a[y];29 mp[u][v]=mp[v][u]=1;30 }31 for(rg int i=1;i

 

转载于:https://www.cnblogs.com/lxyyyy/p/10808897.html

你可能感兴趣的文章
20180418小测
查看>>
Spring Cloud是怎么运行的?
查看>>
12 联结表
查看>>
数字三角形
查看>>
NGUI 减少drawcall规则
查看>>
三元表达,匿名函数
查看>>
前端笔记-基础笔记
查看>>
【LeetCode & 剑指offer刷题】查找与排序题6:33. Search in Rotated Sorted Array(系列)
查看>>
GNU/Linux超级本ZaReason Ultralap 440体验
查看>>
将github上托管的代码 在我的域名下运行
查看>>
【Manthan, Codefest 18 (rated, Div. 1 + Div. 2) C】Equalize
查看>>
【codeforces 767A】Snacktower
查看>>
【MemSQL Start[c]UP 3.0 - Round 1 C】 Pie Rules
查看>>
Ognl中“%”、“#”、“$”详解
查看>>
我对应用软件——美团的看法
查看>>
执行了的程序,才是你的程序.
查看>>
struts2.x + Tiles2.x读取多个xml 配置文件
查看>>
表单校验之datatype
查看>>
python第六篇文件处理类型
查看>>
(四)hadoop系列之__hadoop搭建(单机配置)
查看>>