ACM_水题系列
acceptedwwh
当代大学生,阳光开朗,乐于交往和求知!
展开
-
hdu 2035
#include#includeint main(){ int a, b, res; while(scanf("%d%d", &a, &b) != EOF && a+b){ res = 1; for(int i = 1; i <= b; i++){ res = res*(a%1000)%1000; }原创 2012-10-24 14:09:14 · 998 阅读 · 0 评论 -
学生信息管理
#include #include #include #define MaxSize 50#define TRUE 1#define FALSE 0typedef int BOOL;typedef struct student { char num[9]; char name[9]; char sex[5]; float score;}student;type原创 2013-01-08 16:27:57 · 1000 阅读 · 0 评论 -
思考指针!
#include #include #include using namespace std;void fun(char *w, int n) { char *s1 = w; char t; char *s2 = w + n - 1; printf("%c ", *s2); while( s1 < s2 ) { t = *s1+原创 2013-02-01 19:42:51 · 783 阅读 · 0 评论 -
POJ2141(Message Decowding)
Message DecowdingTime Limit: 1000MS Memory Limit: 65536KTotal Submissions: 10890 Accepted: 6021DescriptionThe cows are thrilled because they've just learned about e原创 2013-04-15 16:13:02 · 984 阅读 · 0 评论 -
Lecture Halls
Lecture Halls (会议安排) 时间限制(普通/Java):1000MS/10000MS 运行内存限制:65536KByte总提交: 38 测试通过: 20描述假设要在足够多的会场里安排一批活动,并希望使用尽可能少的会场。设计一个有效的算法进行安排。(这个问题实际上是著名的图着色问题。若将每一个活动作为图的一个顶点,原创 2013-08-15 23:07:56 · 1444 阅读 · 0 评论 -
Wooden Sticks
Wooden Sticks 时间限制(普通/Java):1500MS/15000MS 运行内存限制:65536KByte总提交: 31 测试通过: 12描述There is a pile of n wooden sticks. The length and weight of each stick are known in advan原创 2013-08-15 23:09:56 · 1113 阅读 · 0 评论 -
java程序
/************************************************************************* > File Name: Hello.java > Author: achiber > Mail: 1530168830@qq.com > Created Time: Rab 18 Sep 2013 10:29:00原创 2013-09-18 23:32:36 · 896 阅读 · 0 评论 -
POJ2260 Error Correction
矩阵原创 2014-03-11 15:15:14 · 737 阅读 · 0 评论 -
HDU1257
#include #include #include #include using namespace std;const int INF = 0x7fffffff;const int maxn = 30100;int h[maxn];// the height.int d[maxn];int main(){ int n; int idx = 1;原创 2014-04-08 17:50:10 · 823 阅读 · 0 评论