博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Luogu2014选课
阅读量:5214 次
发布时间:2019-06-14

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

注意循环顺序

#include
#include
#include
using namespace std;int n,m,head[1005],fa[1005],dp[1005][1005],cnt;struct edge{ int v,next;}e[1005];inline void add(int u,int v){ e[++cnt].v=v; e[cnt].next=head[u]; head[u]=cnt;}inline void dfs(int u){ for(int i=head[u];i!=-1;i=e[i].next){ int v=e[i].v; dfs(v); for(int j=m;j>=1;j--){ for(int k=1;k

转载于:https://www.cnblogs.com/Y15BeTa/p/11268727.html

你可能感兴趣的文章
BZOJ 1046 [HAOI2007]上升序列 DP
查看>>
【Qt开发】Qt控件之进度条
查看>>
shell基础知识
查看>>
【转】解决CentOS 64位系统vsftpd 530 login incorrect的问题
查看>>
Linux系统目录分析
查看>>
(转)浏览器的渲染原理
查看>>
P4011 孤岛营救问题
查看>>
Gmail新版截图曝光 你还能认得出来吗?
查看>>
C++之重载函数
查看>>
中国对地观测卫星介绍
查看>>
Services
查看>>
Animation and Graphics Overview
查看>>
php对某个页面设置基础认证登录设置
查看>>
贪吃蛇
查看>>
Iterm2的一些好用法
查看>>
java拦截器(Interceptor)学习笔记
查看>>
java中取小数点后两位(四种方法)
查看>>
bzoj3275: Number
查看>>
android Activity启动过程(三)从栈顶Activity的onPause到启动activityon的Resume过程
查看>>
区块链记账原理
查看>>