第三届河南省程序设计大赛 - 部分题解


刚考完四级,心情有点奇怪,四级可以过吗?管他呢,先刷几个题再说,,找到某年的省赛题做做。。




房间安排

时间限制: 3000 ms  |  内存限制: 65535 KB
难度: 2
描述

2010年上海世界博览会(Expo2010),是第41届世界博览会。于2010年5月1日至10月31日期间,在中国上海市举行。本次世博会也是由中国举办的首届世界博览会。上海世博会以“城市,让生活更美好”(Better City,Better Life)为主题,将充分探索21世纪城市生活。

这次世博会总投资达450亿人民币,创造了世界博览会史上的最大规模记录。吸引200个国家和国际组织参展。预计有7000万人次的参观者。

为了更好地接待在这期间来自世界各地的参观者,如何合理安排各宾馆的住房问题提到了日程。组委会已接到了大量的客户住宿定单,每张定单的内容包括要住宿的房间数,开始住宿时间和要住的天数。为了便于整个城市各宾馆的管理,组委会希望对这些定单进行安排,目的是用尽可能少的房间来满足这些定单,以便空出更多的房间用于安排流动游客。

组委会请求DR.Kong来完成这个任务,对这些定单进行合理安排,使得满足这些定单要求的房间数最少。

假设:某个定单上的游客一旦被安排到某房间,在他预定住宿的期间内是不换房间的。为了简化描述,定单上的开始住宿时间为距离现在的第几天。例如,定单为(10,30,5)表示游客要求使用10个房间,第30天开始连住5天。

输入
第一行:T 表示有T组测试数据
每组测试数据第一行:N 表示定单数
每组测试数据接下来有N行,每行有三个整数 A B C 表示房间数,开始住宿时间和天数
1<=T<=100
1<=N<=10000 1<=A<=10 1<=B<=180 1<=c<=10
输出
输出一个整数,为满足所有定单要求的最少房间数。
样例输入
1
3
3 10 4
4 9 3
3 12 6
样例输出
7
来源
第三届河南省程序设计大赛




思路:很简单,就逐天增加相应的房间,找到某天那个最大的那个房间数就可以了


AC代码:

#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;

const int maxn = 200;
int room[maxn];

int main()
{
	int t, n;
	scanf("%d", &t);
	while(t--)
	{
		memset(room, 0, sizeof(room));
		scanf("%d", &n);
		for(int i=0; i<n; i++)
		{
			int a, b, c;
			scanf("%d %d %d", &a, &b, &c);
			for(int i=b; i<b+c; i++)
			{
				room[i] += a;
			}
		}
		int ans = 0;
		for(int i=0; i<200; i++)
		{
			ans = max(ans, room[i]);
		}
		printf("%d\n", ans);
	}
	return 0;
}




素数

时间限制: 3000 ms  |  内存限制: 65535 KB
难度: 1
描述

走进世博园某信息通信馆,参观者将获得前所未有的尖端互动体验,一场充满创想和喜悦的信息通信互动体验秀将以全新形式呈现,从观众踏入展馆的第一步起,就将与手持终端密不可分,人类未来梦想的惊喜从参观者的掌上展开。

在等候区的梦想花园中,参观者便开始了他们奇妙的体验之旅,等待中的游客可利用手机等终端参与互动小游戏,与梦想剧场内的虚拟人物Kr. Kong 进行猜数比赛。当屏幕出现一个整数X时,若你能比Kr. Kong更快的发出最接近它的素数答案,你将会获得一个意想不到的礼物。

例如:当屏幕出现22时,你的回答应是23;当屏幕出现8时,你的回答应是7;若X本身是素数,则回答X;若最接近X的素数有两个时,则回答大于它的素数。

 

输入
第一行:N 要竞猜的整数个数
接下来有N行,每行有一个正整数X
1<=N<=5 1<=X<=1000
输出
输出有N行,每行是对应X的最接近它的素数
样例输入
4
22
5
18
8
样例输出
23
5
19
7
来源
第三届河南省程序设计大赛


思路:素数筛选法,筛出其中的素数,然后输入,就看输入那个数本身是不是素数,是就输出,不是就往两边找,找到素数就输出(先往大的方向找)


AC代码:

#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;

const int maxn = 1010;
int prime[maxn];
 
int init()
{
	memset(prime, 0, sizeof(prime));
	for(int i=2; i<=maxn; i++)
	{
		if(prime[i] == 0)
		{
			prime[i] = 2;
			for(int j = i*i; j<maxn; j += i)
				prime[j] = 1;
		}
	}
}

int main()
{
	init();
	int n;
	scanf("%d", &n);
	while(n--)
	{
		int x;
		scanf("%d", &x);
		if(prime[x]==2) printf("%d\n", x);
		else for(int i=1; i<=x; i++)
		{
			if(prime[x+i] == 2) { printf("%d\n", x+i); break;}
			else if(prime[x-i] == 2) { printf("%d\n", x-i); break;}
		}
	}
	return 0;
}



网络的可靠性

时间限制: 3000 ms  |  内存限制: 65535 KB
难度: 3
描述

A公司是全球依靠的互联网解决方案提供商,也是2010年世博会的高级赞助商。它将提供先进的网络协作技术,展示其”智能+互联“的生活概念,同时为参观者提供高品质的个人体验和互动,以”信息通信,尽情城市梦想”为主题贯穿。借助奇幻的剧场大屏幕和特效,展现信息通信技术的应用前景,通过生动形象的故事,向观众展示沟通无限制的未来社会前景。

为此,A公司为世博园的N个区域建立了视频通信系统,其中每个区域建立一个基站,编号依次为1,2,3...,N。通过基站之间的通信线路为各区域的参观者提供视频服务。

已知在各基站之间已铺设了一些光纤通讯线路,这些线路覆盖了所有的区域,即任意两个区域都可以进行视频传递。但为了节约成本开支,目前只铺设了N-1条线路,同时为了减轻各基站的信息传递负载,每个基站最多有三条光纤通讯线路与之连接。

但在通信系统试运行期间,A公司发现当某个基站发生故障时,会导致其它区域之间无法进行信息传递。为了提高该通信网络的可靠性,A公司准备在基站之间再新铺设一些光纤线路,使得任意一个基站故障后,其它基站之间仍然可以通讯。

由于铺设线路的成本昂贵,A公司希望新增设的光纤线路越少越好。A公司请求Dr. Kong来完成这个任务

输入
有多组测试数据,以EOF为结束标志。
第一行: N 表示有N个基站
接下来有N-1行:X Y 表示第X个基站与第Y个基站直连
1<=N<=10000
输出
输出一个整数,表示至少需新铺设的光纤线路数
样例输入
8
1 3
3 2
5 3
5 4 
5 6
2 7
2 8
样例输出
3
来源
第三届河南省程序设计大赛


思路:就是一个图,找度为一的点,加一条路径可以去掉两个度为一的点,只要把所有度为一的点去掉即可


AC代码:

#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;

const int maxn = 10005;
int indeg[maxn];

int main()
{
	int n;
	while(scanf("%d", &n) != EOF)
	{
		memset(indeg, 0, sizeof(indeg));
		for(int i=1; i<n; i++)
		{
			int a, b;
			scanf("%d %d", &a, &b);
			indeg[a]++;
			indeg[b]++;
		}
		int sum = 0;
		for(int i=1; i<=n; i++)
		{
			if(indeg[i] == 1) sum++;
		}
		printf("%d\n", sum/2 + sum%2);
	}
	return 0;
}



聪明的kk

时间限制: 1000 ms  |  内存限制: 65535 KB
难度: 3
描述
聪明的“KK”
非洲某国展馆的设计灵感源于富有传奇色彩的沙漠中陡然起伏的沙丘,体现出本国不断变换和绚丽多彩的自然风光与城市风貌。展馆由五部分组成,馆内影院播放名为《一眨眼的瞬间》的宽银幕短片,反映了建国以来人民生活水平和城市居住环境的惊人巨变。
可移动“沙丘”变戏法 的灵感源于其独特而雄伟的自然景观——富于传奇色彩的险峻沙丘。宏伟的结构、可循环的建材,与大自然相得益彰。环绕一周,发现它正是从沙丘那不断变换的形态中汲取灵感的。外形逼真到无论从哪个角度去观察,都能清楚地辨识出沙丘的特征。
它“坡面”高达20米,微风吹来,你是否感觉到沙的流动?用手去触碰,却发现原来是“魔术戏法”。它表面的不锈钢面板呈现出一种富于变幻的色彩,从不同角度观察,呈现不同色泽,由此来模仿流动沙丘的光感。
走进第三展厅有一个超大的屏幕,通过奇妙的特效,让观众犹如亲身来到浩瀚的沙漠。更为奇妙的是,只见一个小动物“KK”正从沙漠区域(矩形)的左上角沿着向右或向下的方向往右下角跑去。KK太聪明了,它居然能在跑的过程中会选择吃掉尽可能多的虫子线路。
你知道它吃掉多少虫子吗?
输入
第一行:N M (1≤N M≤20 0≤Xij≤500(i=1,2„.N, j=1,2„,M)
)表示沙漠是一个N*M的矩形区域
接下来有N行:每行有M个正整数,Xi1 Xi2 ……Xim 表示各位置中的虫子数(单个空格隔开)
假设“KK”只能向右走或向下走。
输出
输出有一个整数, 表示“KK”吃掉最多的虫子数。
样例输入
3 4
3 1 2 8
5 3 4 6
1 0 2 3
样例输出
24
来源
第三届河南省程序设计大赛


思路:简单贪心!!


AC代码:

#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;

int a[25][25];

int main()
{
	int n, m;
	memset(a, 0, sizeof(a));
	scanf("%d %d", &n, &m);
	for(int i=1; i<=n; i++)
	{
		for(int j=1; j<=m; j++)
		{
			scanf("%d", &a[i][j]);
		}
	}
	for(int i=2; i<=n; i++)
		a[i][1] += a[i-1][1];
	for(int i=2; i<=m; i++)
		a[1][i] += a[1][i-1];
	for(int i=2; i<=n; i++)
	{
		for(int j=2; j<=m; j++)
		{
			a[i][j] += max(a[i-1][j], a[i][j-1]);
		}
	}
	printf("%d\n", a[n][m]);
	return 0;
}


BUYING FEED

时间限制: 3000 ms  |  内存限制: 65535 KB
难度: 4
描述

Farmer John needs to travel to town to pick up K (1 <= K <= 100)pounds of feed. Driving D miles with K pounds of feed in his truck costs D*K cents.

The county feed lot has N (1 <= N<= 100) stores (conveniently numbered 1..N) that sell feed. Each store is located on a segment of the X axis whose length is E (1 <= E <= 350). Store i is at  location X_i (0 < X_i < E) on the number line and can sell John as much as F_i (1 <= F_i <= 100) pounds of feed at a cost of C_i (1 <= C_i <= 1,000,000) cents per pound.
Amazingly, a given point on  the X axis might have more than one store.

Farmer John  starts  at location 0 on this number line and can drive only in the positive direction, ultimately arriving at location E, with at least K pounds of feed. He can stop at any of the feed stores along the way and buy any amount of feed up to the the store's limit.   What is the minimum amount Farmer John has to pay to buy and transport the K pounds of feed? Farmer John
knows there is a solution.  Consider a sample where Farmer John  needs two pounds of feed from three stores (locations: 1, 3, and 4) on a number line whose range is 0..5:      
0   1   2  3   4   5     
---------------------------------          
1       1   1                Available pounds of feed          
1       2   2               Cents per pound

It is best for John to buy one pound of feed from both the second and third stores. He must pay two cents to buy each pound of feed for a total cost of 4. When John travels from 3 to 4 he is moving 1 unit of length and he has 1 pound of feed so he must pay1*1 = 1 cents.

When John travels from 4 to 5 heis moving one unit and he has 2 pounds of feed so he must pay 1*2 = 2 cents. The total cost is 4+1+2 = 7 cents.

输入
The first line of input contains a number c giving the number of cases that follow
There are multi test cases ending with EOF.
Each case starts with a line containing three space-separated integers: K, E, and N
Then N lines follow :every line contains three space-separated integers: Xi Fi Ci
输出
For each case,Output A single integer that is the minimum cost for FJ to buy and transport the feed
样例输入
1
2 5 3                 
3 1 2
4 1 2
1 1 1
样例输出
7
来源
第三届河南省程序设计大赛

思路:也是简单贪心!!(不过是按每个feed的cost的从小到大排序,而不是按总的feed的cost排序,我就这样很蠢的WA了一次。。微笑


AC代码:

#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;

int e;
const int maxn = 105;
struct node
{
	int x;
	int f;
	int cost;	
}s[maxn];

bool cmp(node a, node b)
{
	return (a.cost+e-a.x<b.cost+e-b.x);
}

int main()
{
	int c;
	while(scanf("%d", &c) != EOF)
	{
		while(c--)
		{
			int k, n;
			scanf("%d %d %d", &k, &e, &n);
			for(int i=0; i<n; i++)
				scanf("%d %d %d", &s[i].x, &s[i].f, &s[i].cost);
			sort(s, s+n, cmp);
			int ans = 0, i = 0;
			while(k>0)
			{
				if(k >= s[i].f) { ans += (s[i].cost+e-s[i].x)*s[i].f; k -= s[i].f; }
				else { ans += (s[i].cost+e-s[i].x)*k; k = 0; }
				i++;
			}
			printf("%d\n", ans);
		}
	}
	return 0;
}



AMAZING AUCTION

时间限制: 3000 ms  |  内存限制: 65535 KB
难度: 4
描述

Recently the auction house has introduced a new type of auction, the lowest price auction. In this new system, people compete for the lowest bid price, as opposed to what they did in the past. What an amazing thing! Now you could buy cool stuff with one penny. Your task is to write the software to automate this auction system. 

First the auctioneer puts an upper limit on bid price for each item. Only positive price less than or equal to this price limit is a valid bid. For example, if the price limit is 100, then 1 to 100, inclusive, are all valid bid prices. Bidder can not put more than one bid for the same price on a same item. However they can put many bids on a same item, as long as the prices are different. 

After all bids are set, the auctioneer chooses the winner according to the following rules:

(1). If any valid price comes from only one bidder, the price is a "unique bid". If there are unique bids, then the unique bid with the lowest price wins. This price is the winning price and the only bidder is the winning bidder.

(2). If there are no unique bids, then the price with fewest bids is the winning bid. If there are more than one price which has the same lowest bid count, choose the lowest one. This price is the winning price. The bidder who puts this bid first is the winning bidder. 

Given the price limit and all the bids that happen in order, you will determine the winning bidder and the winning price. 

输入
There are multi test cases.EOF will terminate the input.
The first line contains two integers: U (1 <= U <= 1000), the price upper limit and M (1 <= M <= 100), the total number of bids. M lines follow, each of which presents a single bid. The bid contains the bidder's name (consecutive non-whitespace characters<=5) and the price P (1 <= P <= U), separated with a single space. All bids in the input are guaranteed to be valid ones.
输出
Print the sentence "The winner is W" on the first line, and "The price is P" on the second. 
样例输入
30 7                                 
Mary 10                              
Mary 20
Mary 30
Bob 10
Bob 30
Carl 30
Alice 23
样例输出
The winner is Mary
The price is 20
来源
第三届河南省程序设计大赛

思路:貌似是一个很常见的游戏,就是竞拍,给出价格,看谁的价格是唯一一个出价的且在唯一一个出价中最低的,如果不存在,就输出第一个拍出那个最低价的人。。


AC代码:

#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;

struct node
{
	char st[10];
	int price;
}a[110];

int ci[1005]; 

int main()
{
	int u, m;
	while(scanf("%d %d", &u, &m) != EOF)
	{
		memset(ci, 0, sizeof(ci));
		for(int i=0; i<m; i++)
		{
			scanf("%s %d", a[i].st, &a[i].price);
			ci[a[i].price]++;	
		}
		int p, flag = 1;
		for(int i=1; i<=u; i++)
			if(ci[i] == 1) { p = i; flag = 0; break; }
		if(flag)
			for(int i=1; i<=u; i++)
				if(ci[i] > 0) { p = i; break; }
		for(int i=0; i<m; i++)
		{
			if(a[i].price == p) 
			{
				printf("The winner is %s\n", a[i].st);
				break;
			}
		}
		printf("The price is %d\n", p);
	}
	return 0;
}




总结:省赛的题还是蛮水的,下次省赛好好耍!!








  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值