1017 - Exact cover Time Limit: 15s Memory Limit: 128MB Special Judge Submissions: 6751 Solved: 3519 DescriptionThere is an N*M matrix with only 0s and
分类:
其他好文 时间:
2016-03-01 23:55:24
阅读次数:
295
题目链接:http://acm.hrbust.edu.cn/index.php?m=ProblemSet&a=showProblem&problem_id=2245Time Limit: 500 MSMemory Limit: 50000 KTotal Submit: 129(38 users)To...
分类:
其他好文 时间:
2016-01-17 10:58:20
阅读次数:
140
【题目大意】有M个项目和N个员工。做项目i可以获得Ai元,但是必须雇用若干个指定的员工。雇用员工j需要花费Bj元,且一旦雇用,员工j可以参加多个项目的开发。问经过合理的项目取舍,最多能挣多少钱。(1 2 #include 3 #include 4 #include 5 #include 6 #in....
分类:
其他好文 时间:
2015-12-28 21:48:04
阅读次数:
151
The interval angle between the hour hand and the minute hand is always among 0 degree and 180 degree(including 0 and 180 degree). For example, when it...
分类:
其他好文 时间:
2015-12-27 21:43:54
阅读次数:
147
The number 151 is a prime palindrome because it is both a prime number and a palindrome (it is the same number when read forward as backward). Write a...
分类:
其他好文 时间:
2015-12-26 14:50:19
阅读次数:
198
For each pair of integers A B and C ( -2^31 #include int main(){ long long int a,b,c; while(scanf("%I64d %I64d %I64d",&a,&b,&c)==3) { printf...
分类:
其他好文 时间:
2015-12-14 18:29:44
阅读次数:
143
先说点废话:正式进入ACM大坑,瞬间就感觉到了差距之大。首先,全英文这对于我来说无疑是很大的挑战,其实这学期哈工大C语言课也有一个刷题网站sse,那个我刷到2800多分就不想刷了,实在是没意思(题目大都是基础的),也不想和自己班的那些人为了个无意义的题目一直刷较劲。所以感觉自己差不多就进入了各个OJ...
分类:
其他好文 时间:
2015-12-14 18:20:17
阅读次数:
147
这道题就很水啦,只要看懂题。。。所以我受了这个影响,再去hoj的时候想都没想就还按照这个打了,结果就像之前那篇说的那样WA。#include int main(){ int a,b; scanf("%d %d",&a, &b); printf("%d\n",a+b); ret...
分类:
其他好文 时间:
2015-12-14 18:10:33
阅读次数:
127
WA了半天。有如下可能错误: 每一行的最后是否都是直接换行而没有多余的空格(用N = 17试试) 用62/max_length而不是60不明白为什么有人TLE,RE难道是自己写的排序太渣了?。。。那为什么想不开非要自己写排序这个转置的输出方式真是纠结了我好久,尤其是那些该不该打的空格。第i行,第.....
分类:
其他好文 时间:
2015-11-23 01:00:02
阅读次数:
256
时间限制:10000ms单点时限:1000ms内存限制:256MB描述Given two positive integers N and M, please divide N into several integers A1, A2, ..., Ak (k >= 1), so that:1. 0 1...
分类:
其他好文 时间:
2015-11-04 22:49:38
阅读次数:
279