- 博客(26)
- 收藏
- 关注
转载 通讯录程序
[objc] view plaincopy01.//转载自《零基础学算法·第三版》,仅供交流,切勿盗用。 //转载自《零基础学算法·第三版》,仅供交流,切勿盗用。typedef struct{ char key[15];//关键字 char addr[20]; char telephone[15]; char mobile[12];}DATA;
2014-12-18 17:43:19 451
转载 彩票生成的递归算法
//转载自《零基础学算法·第三版》,仅供交流,切勿盗用。#include #include #define MAXN 7 //设置每一注彩票的数字#define NUM 29 //设置组成彩票的数字int num[NUM];int lottery[MAXN];void combine(int n,int m){ int i,j; for(i=n;i>=m;
2014-12-10 14:49:53 857
转载 生成彩票号码组合
//转载自《零基础学算法·第三版》,仅供交流,切勿盗用。#include #include int main(){ int i[7],j; for(i[0]=1;i[0] for(i[1]=1;i[1] { if(i[0]==i[1]) continue; for(i[2]=1;i[2]
2014-12-10 14:37:09 2163
转载 找零钱
//转载自《零基础学算法·第三版》,仅供交流,切勿盗用。#include #include #define MAXN 9int parvalue[MAXN]={10000,5000,2000,1000,500,200,100,50,20,10};//定义人民币面额数组int num[MAXN]={0};//定义找零钱中各对应面额人民币的数量int exchange(int n){
2014-12-09 21:26:49 505
转载 比赛日程安排
//运用分治算法的思想,将问题分解,再合成//转载自《零基础学算法·第三版》,仅供交流,切勿盗用。#include #include #define MAXN 64int a[MAXN+1][MAXN+1]={0};//定义全局数组void gamecal(int k,int n)//处理编号k开始的n个选手的日程{ int i,j; if(n==2) {
2014-12-09 21:13:50 407
原创 tyvj begin 闰秒 wa了2个小时竟然 【水题】
背景 BackgroundUnit 2, Section D描述 Description对于给定的秒数,请输出它以时:分:秒的形式的表示。当然,为了增加难度,我们假设每一分钟都有闰秒,也就是说一分钟有61秒。输入格式 InputFormat输入一行,一个整数,表示秒数(0<n<5000)。输出格式 OutputFormat输出一行,以时:分:秒的形式的表示。我的wa点就是
2014-08-01 08:03:47 529
原创 hello kitty tyvj begin 不能再水了 字符串输入
背景 BackgroundUnit1, Section E描述 Description"我整个人都Hello Kitty了 ..."因为真的不知道干什么了 ,所以小A决定,从今往后,只要有人跟他说话他就原样把他说出去!(真是个无聊的人啊 ......)输入格式 InputFormat输入包含不知道多少行,有若干字符输出格式 OutputFormat输出包含不知道多少行,和输入一模
2014-07-31 17:21:51 709
原创 hello cube tyvj 水题 不能再水了
背景 BackgroundUnit1, Section D描述 Description魔方大家都玩过吧? 常见的魔方,每边上有3个小正方体,如下图所示我们把魔方每边上的小正方体数量叫魔方的“阶”所以,常见的魔方叫“3阶魔方”。 不过,魔方可不是只有3阶的,还有2、4、5……阶的呢,如下图所示:观察所有的魔方,你会发现,我们可以把魔方表面上的小正方体分为三类: 第一类:有三
2014-07-31 17:05:47 1292
原创 巧克力 tyvj begin 水题
背景 BackgroundUnit1 巧克力提示:1.本题有一定的思考难度,请尝试证明你的做法!描述 Description 小Z最爱吃巧克力了,有一次妈妈给他了一块巧克力,如下图为两个2*2的巧克力。 聪敏的小Z开始思考,如果给他一个N*M的巧克力,他最少需要掰多少次才可以让巧克力变成一块一块的?(不能重叠着掰) 对于图中的一块巧克力,最少需要掰3次。输入格
2014-07-31 09:34:51 990
转载 HDU 贪心 今年暑假不AC 2037
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 7618 Accepted Submission(s): 3874Problem Description“今年暑假不AC?”“是的。”“那你干什么呢?”“看世界杯呀,笨蛋!”
2014-07-30 15:51:48 529
原创 tyvj 贪心 p1019 配对 【贪心初级】
描述 Description 给出2个序列A={a[1],a[2],…,a[n]},B={b[1],b[2],…,b[n]},从A、B中各选出n个元素进行一一配对(可以不按照原来在序列中的顺序),并使得所有配对元素差的绝对值之和最大。
2014-07-30 13:56:47 549
原创 HDU 最小公倍数 1108 【水】
#include using namespace std;int main(){ int m,n,temp; cin>>m>>n; if(m>n){temp=m;m=n;n=temp;} for(int i=n;;i++) if(i%m==0&&i%n==0) { cout << i<< endl;break;
2014-07-18 14:10:56 336
原创 C++选择排序法,按从大到小排序,long long 型
输入格式 InputFormat第一行一个整数n,表示数列的长度接下来有n行,每行有一个整数,表示数组中的元素输出格式 OutputFormat共n行,输出他们排序后的结果
2014-07-17 07:25:50 3320
原创 无脑switch题,Unit2 键盘,tyvj BEGIN【以后不需要再看,除非有BUG】
这是输入键盘上一个字母,输出该字母左上方和右上方分别是什么键。以下为键盘上键的名称和位置:1 2 3 4 5 6 7 8 9 0 - Q W E R T Y U I O P A S D F G H J K L Z X C V B N M ,
2014-07-16 22:02:39 390
原创 Begin1 - Unit5 - 队列的逆转 tyvj 以后我自己不会看
:现在,我有一个n*m的矩阵,,请你把它顺时针旋转90°事成之后,,我给你1000000 mod 10元RMB ..
2014-07-15 23:31:32 379
原创 利用递归方法求最大公约数 gcd
#include #includeusing namespace std;//求最大公约数//时间超标,需要优化int gcd(int a, int b)//函数定义{ int max = a > b ? a : b; int min = a < b ? a : b; a = max; b = min; int r = a % b; if(0
2014-07-11 16:30:52 1283
原创 UVa 694 The Collatz Sequence
The Collatz Sequence An algorithm given by Lothar Collatz produces sequences of integers, and is described as follows:Step 1:Choose an arbitrary positive integer A as the first item in the seq
2014-06-17 22:27:41 429
转载 UVa 445 Marvelous Mazes
Marvelous Mazes Your mission, if you decide to accept it, is to create a maze drawing program. A maze will consist of the alphabetic characters A-Z, * (asterisk), and spaces.Input and OutputYour
2014-06-16 21:20:15 331
转载 Rotating Sentences
#include#include#define maxn 107int line,len;char s[maxn][maxn];int main(){ memset(s,0,sizeof(s)); line=len=0; while(gets(s[line])) { if(len<strlen(s[line]))
2014-06-16 21:10:51 322
原创 Kindergarten Counting Game
Kindergarten Counting Game Everybody sit down in a circle. Ok. Listen to me carefully.``Woooooo, you scwewy wabbit!''Now, could someone tell me how many words I just said?Input and OutputInp
2014-06-16 20:59:17 590
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人