博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj 1463树形dp 树的最小覆盖
阅读量:5241 次
发布时间:2019-06-14

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

#include
#include
#include
#include
#include
#include
using namespace std;// push_back inline int read(){ int sum=0,x=1; char ch=getchar(); while(ch<'0'||ch>'9'){ if(ch=='-') x=0; ch=getchar(); } while(ch>='0'&&ch<='9'){ sum=(sum<<1)+(sum<<3)+(ch^48),ch=getchar(); } return x?sum:-sum;}inline void write(int x){ if(x<0) putchar('-'),x=-x; if(x>9) write(x/10); putchar(x%10+'0');}int mi(int x,int y){ return x
y?x:y;}const int M=1505;const int inf=0x3f3f3f3f;vector
g[M];int dp[M][2],f[M];void dfs(int u){ dp[u][0]=0,dp[u][1]=1; for(int i=0;i
View Code

 

转载于:https://www.cnblogs.com/starve/p/10961438.html

你可能感兴趣的文章
第 十一 次作业
查看>>
利用PHP SOAP实现WEB SERVICE[转载]
查看>>
数组filter()参数详解,巧用filter()数组去重
查看>>
查询项目中未被使用的js、css和图片
查看>>
Django Blog学习笔记(一)
查看>>
linux上挂载存储测试
查看>>
重建二叉树
查看>>
codeforces 659D D. Bicycle Race(水题)
查看>>
codeforces 696A A. Lorenzo Von Matterhorn(水题)
查看>>
获取全部校园网
查看>>
扯扯MySQL 5.6.19 Administrative Roles and Global Privileges
查看>>
2017-2018-1 20155220 《信息安全系统设计基础》课下实践——实现mypwd
查看>>
jquery/js不支持ie9以下版本的方法或属性
查看>>
Swift基础
查看>>
前端开发 - CSS - 上
查看>>
集成备注
查看>>
CSRF原理
查看>>
HDU 1518 Square(Dfs)
查看>>
Mysql基础3
查看>>
linux脚本定时备份数据库表(详解)
查看>>