《算法竞赛入门经典》第三章习题

《算法竞赛入门经典》(第二版)第三章习题

得分(Score)UVa1585

问题描述

如何计算你们的得分呢?,如“OOXXOXXOOO”。 “O”表示问题的正确答案,“X”表示错误的答案。那么它得分是由它自己和它刚刚以前连续的'O'只有当答案是正确的。
例如,第10个问题的分数是由其自身和它的两个先前连续的“0”获得的3。
因此,“OOXXOXXOOO”的得分是通过“1 + 2 + 0 + 0 + 1 + 0 + 0 + 1 + 2 + 3”计算的10。你要编写一个计算测试结果分数的程序。

题解代码

#include<iostream>
using namespace std;
int main()
{
    char c[100];
    int n,score,tot;
    bool TR = false;
    scanf("%d",&n);
    while(n--)
    {
        cin>>c;
        score=tot=0;
        for(int i=0;c[i]!='\0';i++)
        {
            if(c[i]=='O')
            {
                TR=true;
                score+=(++tot);
            }
            else if(c[i]=='X')
            {
                TR=false;
                tot=0;
            } 
        }
        cout<<score<<endl;      
    }
    return 0;
}

分子量(Molar Mass)UVa1586

问题描述

HJL是一个从不讽刺人的品学兼优的好孩子,她最近沉迷学习化学而不能自拔。然而计算一个分子的相对分子质量使她烦不胜烦,因此她决定请你写一个程序来帮助她计算这种麻烦的事情。
已知:
①C代表的碳元素的相对原子质量为12.01,H代表的氢元素的相对原子质量为1.008,O代表的氧元素的相对原子质量为16.00,N代表的氮元素的相对原子质量为14.01。
②一个分子的相对分子质量等于组成这个分子的所有原子的相对原子质量的和:例如,分子式为C6H5OH的分子的相对分子质量为:12.016+1.0085+16.00+1.008=94.108。

题解代码

#include<stdio.h>
#include<string.h>
int main()
{
    int n;
    char s[100];
    scanf("%d",&n);
    while(n--)
    {
        double add = 0,sum = 0;
        int num=0;
        memset(s,0,sizeof(s));  
        scanf("%s",s);
        for(int i=0;i<strlen(s);i++)
        {
            num=1;
            if(s[i]>='0' && s[i]<='9')  continue;
            if(s[i]=='C')   add=12.01;
            if(s[i]=='H')   add=1.008;
            if(s[i]=='O')   add=16.00;
            if(s[i]=='N')   add=14.01;
            if(s[i+1]>='0' && s[i+1]<='9')
            {
                num=s[i+1]-'0';
                if(s[i+2]>='0' && s[i+2]<='9')  num=num*10+s[i+2]-'0';
            }
            sum+=add*num; 
        }
        printf("%.3f\n",sum);
    }
    return 0;
}

数数字(Digit Counting)UVa1225

问题描述

Trung is bored with his mathematics homeworks. He takes a piece of chalk and starts writing a sequence of consecutive integers starting with 1 to N (1 < N < 10000) . After that, he counts the number of times each digit (0 to 9) appears in the sequence. For example, with N = 13 , the sequence is:
12345678910111213
In this sequence, 0 appears once, 1 appears 6 times, 2 appears 2 times, 3 appears 3 times, and each digit from 4 to 9 appears once. After playing for a while, Trung gets bored again. He now wants to write a program to do this for him. Your task is to help him with writing this program.

题解代码

#include<iostream>
#include<cstring>
int num[10];
using namespace std;
int main()
{
    memset(num,0,sizeof(num));
    int n;
    cin>>n;
    while(n--)
    {
        memset(num,0,sizeof(num));
        int w;
        cin>>w;
        for(int i=1;i<=w;i++)
        {
            int j=i;    
            while(j)
            {
                num[j%10]++;
                j=j/10;
            }
        }
        for(int i=0;i<9;i++)
            cout<<num[i]<<" ";
        cout<<num[9];
        cout<<endl;
    }
    return 0;
} 

周期串(Periodic Strings)UVa455

问题描述

如果一个字符串可以被某个长度为k的字符串重复多次得到,则称这个字符串的周期为k。例如,字符串“abcabcabcabc”以3为周期(当然,他也以6、12等等为周期)。
现在请你编写一个程序,求出任一长度不超过80的字符串的最小周期。

题解代码



谜题(Puzzle)UVa227

问题代码

A children's puzzle that was popular 30 years ago consisted of a 5X5 frame which contained 24 small
squares of equal size. A unique letter of the alphabet was printed on each small square. Since there

were only 24 squares within the frame, the frame also contained an empty position which was the same
size as a small square. A square could be moved into that empty position if it were immediately to the
right, to the left, above, or below the empty position. The object of the puzzle was to slide squares
into the empty position so that the frame displayed the letters in alphabetical order.
The illustration below represents a puzzle in its original con guration and in its con guration after
the following sequence of 6 moves:

  1. The square above the empty position moves.
  2. The square to the right of the empty position moves.
  3. The square to the right of the empty position moves.
  4. The square below the empty position moves.
  5. The square below the empty position moves.
  6. The square to the left of the empty position moves.

题解代码

#include<iostream>
#include<cstring>
#include<cstdio>

using namespace std;
char map[6][6];
char order[100]; 
int main()
{
    int fx,fy;
    bool valid;
    char temp;
    int count=1;
    while(cin.getline(map[0],6))
    {
        if (strcmp (map[0],"Z") == 0)  return 0;
        if(count>1) cout<<endl;
        for(int i=1;i<5;i++) cin.getline(map[i],6);
        for(int i=0;i<5;i++)
            for(int j=0;j<5;j++)
            {
                if(map[i][j]==' ')
                {
                    fx=i;
                    fy=j;
                }
            }
        int w=0;
        while(cin>>temp)
        {
            order[w++]=temp;
            if(temp=='0') break;
        }
        getchar();
        //cout<<order<<endl;
        valid = true;   
        for(int i=0;order[i]!='0';i++)
        {
            if(order[i]=='A' && fx>=1) {map[fx][fy]=map[fx-1][fy]; map[fx-1][fy]=' '; fx--;}
            else if(order[i]=='A' && fx==0) {valid = false; break;}
            
            else if(order[i]=='B' && fx<=3) {map[fx][fy]=map[fx+1][fy]; map[fx+1][fy]=' '; fx++;}
            else if(order[i]=='B' && fx==4) {valid = false; break;}
            
            else if(order[i]=='L' && fy>=1) {map[fx][fy]=map[fx][fy-1]; map[fx][fy-1]=' '; fy--;}
            else if(order[i]=='L' && fy==0) {valid = false; break;}
            
            else if(order[i]=='R' && fy<=3) {map[fx][fy]=map[fx][fy+1]; map[fx][fy+1]=' '; fy++;}
            else if(order[i]=='R' && fy==4) {valid = false; break;}
        }
        if(valid)
        {
            cout<<"Puzzle #"<<count++<<":"<<endl;
            for(int i=0;i<5;i++)
            {
                for(int j=0;j<4;j++)
                    cout<<map[i][j]<<" ";
                cout<<map[i][4]<<endl;
            }
            //cout<<endl;       
        }
        else
        {
            cout<<"Puzzle #"<<count++<<":"<<endl;
            cout<<"This puzzle has no final configuration."<<endl;
        }
        memset(map,0,sizeof(map));
        memset(order,0,sizeof(order));
    }
    return 0;
}

纵横字谜的答案(Crossword Answers)UVa232

问题描述

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,922评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,591评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,546评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,467评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,553评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,580评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,588评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,334评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,780评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,092评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,270评论 1 344
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,925评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,573评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,194评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,437评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,154评论 2 366
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,127评论 2 352

推荐阅读更多精彩内容

  • 仿李白《朝发白帝城》 儿子作品: 晨发星城 晨辞星城鸟语涧, 万里山河三时还。 两岸美景留不住, 高铁已过万重山。...
    新鸟学菜阅读 459评论 1 2
  • 引用(reference)是为对象起了另外一个名字,对象一定要设初值之后才可以被引用。这样定义引用时,程序就把引用...
    STFocus阅读 304评论 0 0
  • 没有一条河 也没有水 没有一只船 也没有人 此岸不是此岸 彼岸不是彼岸 从此岸到彼岸 隔着一条看不见的河 没有水 ...
    一生所爱在云端阅读 239评论 0 1
  • 天气晴朗,父亲和儿子到公园玩,他们看见了跷跷板,不顾"儿童专用"的提示,开心地玩儿了起来。 “爸爸,...
    皓皓_f9d7阅读 1,503评论 0 0