模拟
know_heng
步步皆题
展开
-
hdu 1029(模拟)
False coin Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 18531 Accepted: 5210 Description The "Gold Bar"bank received information from reliable sources t原创 2016-11-13 21:21:44 · 234 阅读 · 0 评论 -
HDU 4772(翻转矩阵)
有两个N*N矩阵,让其中一个翻转0,90,180,270度时和另外一个比较,并统计相同位置的点一样的最大个数。 代码: #include #include using namespace std; int a[31][31],b[31][31]; int main() { int N;int i,j,m,n; while(scanf("%d"原创 2017-04-03 18:30:50 · 310 阅读 · 0 评论 -
ZOJ - 2316 Matrix Multiplication(模拟)
Let us consider undirected graph G = which has N vertices and M edges. Incidence matrix of this graph is N * M matrix A = {a ij}, such that a ij is 1 if i-th vertex is one of the ends of j-th edge and原创 2017-04-18 18:49:55 · 327 阅读 · 0 评论 -
NYOJ 喷水装置2 (贪心)
喷水装置(二) 时间限制:3000 ms | 内存限制:65535 KB 难度:4 描述有一块草坪,横向长w,纵向长为h,在它的橫向中心线上不同位置处装有n(n<=10000)个点状的喷水装置,每个喷水装置i喷水的效果是让以它为中心半径为Ri的圆都被润湿。请在给出的喷水装置中选择尽量少的喷水装置,把整个草坪全部润湿。 输入第一行输入一个正整数N表示共有n次测试数据。 每一组测试数原创 2017-04-15 08:23:50 · 396 阅读 · 0 评论