上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 50 下一页
摘要: 题目连接:UVA - 1606 参考:http://www.cnblogs.com/AOQNRMGYXLMV/p/4277934.html 关于atan2和atan函数:http://blog.csdn.net/chinabinlang/article/details/6802686 lrj238 阅读全文
posted @ 2017-05-01 21:49 yijiull 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 题目连接:HDU - 5091 比较少写这类问题,要多练习。。, 参考:http://www.cnblogs.com/tsw123/p/4470115.html 阅读全文
posted @ 2017-05-01 20:04 yijiull 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 题目链接:HDU - 2874 比较少写tarjan,还要多练习。。。 阅读全文
posted @ 2017-04-30 20:34 yijiull 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 题目链接:HDU - 4252 据说水,可还是不会。。。。 参考:http://blog.csdn.net/a197p/article/details/45102907 阅读全文
posted @ 2017-04-30 15:22 yijiull 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 题目链接:POJ - 2452 阅读全文
posted @ 2017-04-30 14:29 yijiull 阅读(116) 评论(0) 推荐(0) 编辑
摘要: Dragon Balls HDU - 3635 题意:转移小球. 并查集. 1 #include<cstdio> 2 #include<cstring> 3 const int maxn=10010; 4 int f[maxn],ct[maxn],trans[maxn]; 5 int n,m; 6 阅读全文
posted @ 2017-04-30 12:37 yijiull 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 链接:http://codeforces.com/contest/803 A:Maximal Binary Matrix 1 #include<cstdio> 2 #include<cstring> 3 int m[110][110]; 4 5 int main() 6 { 7 int n,k; 8 阅读全文
posted @ 2017-04-30 09:26 yijiull 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 题目连接:http://poj.org/problem?id=1962 都是套路。。。 阅读全文
posted @ 2017-04-29 23:44 yijiull 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 题目连接:http://acm.hdu.edu.cn/showproblem.php?pid=2818 还是不熟练。。。 参考:http://www.cnblogs.com/neopenx/p/4512834.html 阅读全文
posted @ 2017-04-29 22:23 yijiull 阅读(107) 评论(0) 推荐(0) 编辑
摘要: More is better HDU - 1856 题意:给出n个关系,问最多有多少个人直接或者间接有关系. 并查集. 1 #include <bits/stdc++.h> 2 using namespace std; 3 4 const int maxn=10000010; 5 int f[max 阅读全文
posted @ 2017-04-29 20:50 yijiull 阅读(118) 评论(0) 推荐(0) 编辑
上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 50 下一页