第六屆藍橋杯真題總結
阿新 • • 發佈:2018-03-14
for a* 截斷 如果 pan 文字 居中 size using
第一題:獎券數目
有些人很迷信數字,比如帶“4”的數字,認為和“死”諧音,就覺得不吉利。
雖然這些說法純屬無稽之談,但有時還要迎合大眾的需求。某抽獎活動的獎券號碼是5位數(10000-99999),要求其中不要出現帶“4”的號碼,
主辦單位請你計算一下,如果任何兩張獎券不重號,
最多可發出獎券多少張。
請提交該數字(一個整數),不要寫任何多余的內容或說明性文字。
#include <iostream> #include <cstdio> #include <cstdlib> #include<algorithm> using namespace std; void solve() { int ans = 0; for (int a = 1; a <= 9; a++) { if (a == 4) continue; for (int b = 0; b <= 9; b++) { if (b == 4) continue; for (int c = 0; c <= 9; c++) {if (c == 4) continue; for (int d = 0; d <= 9; d++) { if (d == 4) continue; for (int e = 0; e <= 9; e++) { if (e == 4) continue; ans++; } } } } } cout<< ans << endl; } int main() { solve(); return 0; }
運行結果是:52488.
第二題 星系炸彈
在X星系的廣袤空間中漂浮著許多X星人造“炸彈”,用來作為宇宙中的路標。
每個炸彈都可以設定多少天之後爆炸。
比如:阿爾法炸彈2015年1月1日放置,定時為15天,則它在2015年1月16日爆炸。
有一個貝塔炸彈,2014年11月9日放置,定時為1000天,請你計算它爆炸的準確日期。
請填寫該日期,格式為 yyyy-mm-dd 即4位年份2位月份2位日期。比如:2015-02-19
請嚴格按照格式書寫。不能出現其它文字或符號。
使用Excel:
代碼解法:
#include <iostream> using namespace std; int year = 1777, month = 4, day = 30; bool IsEndofMonth(); void AddDay(int days); void IncDay(); bool IsLeapYear(); bool IsLeapYear() { return (year % 4 == 0 && year % 100 != 0) || (year % 400 == 0); } bool IsEndofMonth() { switch(month) { case 4: case 6: case 9: case 11: return day == 30; case 2: if (IsLeapYear()) return day == 29; else return day == 28; default: return day == 31; } } void IncDay() //增加一天 { if(IsEndofMonth()) //增加天數,記得要判斷是否是年末,月末 { if(month == 12) { day = 1; month = 1; year++; } else { //已經是IsEndMonth day = 1; month++; } } else { day++; } } void AddDay(int days) { for (int i = 1; i <= days; i++) //增加多少天 days - 1 { IncDay(); } } int main() { // AddDay(5343); cin >> year >> month >> day; AddDay(1000); cout << year << "-" << month << "-" << day << endl; return 0; }
第三題
觀察下面的加法算式:
祥 瑞 生 輝 + 三 羊 獻 瑞 ------------------- 三 羊 生 瑞 氣
其中,相同的漢字代表相同的數字,不同的漢字代表不同的數字。 請你填寫“三羊獻瑞”所代表的4位數字(答案唯一),不要填寫任何多余內容。
#include <iostream>
#include <algorithm>
using namespace std;
void solve()
{
int num[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
do {
int a = num[0]*1000 + num[1]*100 + num[2]*10 + num[3];
int b = num[4]*1000 + num[5]*100 + num[6]*10 + num[1];
int c = num[4]*10000 + num[5]*1000 + num[2]*100 + num[1]*10 + num[7];
if (a + b == c && b > 1000) {
cout << b << endl;
}
} while (next_permutation(num, num+10));
}
int main()
{
solve();
return 0;
}
第四題 格子中輸出
StringInGrid函數會在一個指定大小的格子中打印指定的字符串。 要求字符串在水平、垂直兩個方向上都居中。 如果字符串太長,就截斷。 如果不能恰好居中,可以稍稍偏左或者偏上一點。 下面的程序實現這個邏輯,請填寫劃線部分缺少的代碼。 #include <stdio.h> #include <string.h> void StringInGrid(intwidth, int height, const char* s) { int i,k; char buf[1000]; strcpy(buf, s); if(strlen(s)>width-2) buf[width-2]=0; printf("+"); for(i=0;i<width-2;i++) printf("-"); printf("+\n"); for(k=1; k<(height-1)/2;k++){ printf("|"); for(i=0;i<width-2;i++) printf(" "); printf("|\n"); } printf("|"); printf("%*s%s%*s",_____________________________________________); //填空 printf("|\n");
for(k=(height-1)/2+1; k<height-1; k++){ printf("|"); for(i=0;i<width-2;i++) printf(" "); printf("|\n"); } printf("+"); for(i=0;i<width-2;i++) printf("-"); printf("+\n"); } int main() { StringInGrid(20,6,"abcd1234"); return 0; } 對於題目中數據,應該輸出: +------------------+ | | | abcd1234 | | | | | +------------------+ (如果出現對齊問題,參看【圖1.jpg】)
註解:printf("%*s", len, "xxx"):相當於是 (len, "str"), 設置輸出字符 為len位, 如果str長度不足len位, 前面補空格
printf("%*s%s%*s", (width-2-strlen(s))/2, "", s, (width-2-strlen(s))/2, ""); //填空
第五題:九數組分數
1,2,3...9 這九個數字組成一個分數,其值恰好為1/3,如何組法?
下面的程序實現了該功能,請填寫劃線部分缺失的代碼。
#include<stdio.h>
void test(int x[])
{
int a = x[0]*1000 + x[1]*100 + x[2]*10 +x[3];
int b = x[4]*10000 + x[5]*1000 + x[6]*100 +x[7]*10 + x[8];
if(a*3==b) printf("%d / %d\n", a,b);
}
void f(int x[],int k)
{
int i,t;
if(k>=9){
test(x);
return;
}
for(i=k; i<9; i++){
{t=x[k]; x[k]=x[i]; x[i]=t;}
f(x,k+1);
_____________________________________________// 填空處
}
}
int main()
{
int x[] = {1,2,3,4,5,6,7,8,9};
f(x,0);
return 0;
}
題解:一個簡單的回溯問題
{t=x[k]; x[k]=x[i]; x[i]=t;}
第六題:加法變乘法
我們都知道:1+2+3+ ... + 49 = 1225
現在要求你把其中兩個不相鄰的加號變成乘號,使得結果為2015
比如:
1+2+3+...+10*11+12+...+27*28+29+...+49= 2015 就是符合要求的答案。
請你尋找另外一個可能的答案,並把位置靠前的那個乘號左邊的數字提交(對於示例,就是提交10)。
註意:需要你提交的是一個整數,不要填寫任何多余的內容。
第六屆藍橋杯真題總結