
ACM
文章平均质量分 72
Sakuraill
这个作者很懒,什么都没留下…
展开
-
杭电2063 二分匹配匈牙利算法
传送门:http://acm.hdu.edu.cn/showproblem.php?pid=2063 #include<stdio.h> #include<string.h> #define MAX 600 int pos[MAX][MAX],match[MAX],dian[MAX]; main() { int a,b,M,N,K,i,count; whi...原创 2018-07-29 15:54:35 · 201 阅读 · 0 评论 -
Disastrous Downtime 解题报告
You're investigating what happened when one of your computer systems recently broke down. So far you've concluded that the system was overloaded; it looks like it couldn't handle the hailstorm of inco...原创 2018-07-26 20:26:10 · 246 阅读 · 0 评论 -
杭电2059 DP
传送门:http://acm.hdu.edu.cn/showproblem.php?pid=2059 #include<stdio.h> #define max 1000000 main() { double DP[200],L,C,T,v,v1,v2,a[200],t,l; int N,i,j; while(scanf("%lf",&L)!=EOF...原创 2018-08-05 15:18:49 · 505 阅读 · 0 评论 -
HDU5538 House building 讨论层数暴力解法
http://acm.hdu.edu.cn/discuss/problem/list.php?problemid=5538 大意就是求表面积,遮挡不算。 #include<stdio.h> #include<string.h> main() { int N;int a[101][101],m,n,max,i,j,k; long l...原创 2018-08-30 15:55:17 · 139 阅读 · 0 评论