“是的。”
“那你干什么呢?”
“看世界杯呀,笨蛋!”
“@#$%^&*%...”
确实如此,世界杯来了,球迷的节日也来了,估计很多ACMer也会抛开电脑,奔向电视了。
作为球迷,一定想看尽量多的完整的比赛,当然,作为新时代的好青年,你一定还会看一些其它的节目,比如新闻联播(永远不要忘记关心国家大事)、非常6+7、超级女生,以及王小丫的《开心辞典》等等,假设你已经知道了所有你喜欢看的电视节目的转播时间表,你会合理安排吗?(目标是能看尽量多的完整节目)
12 1 3 3 4 0 7 3 8 15 19 15 20 10 15 8 18 6 12 5 10 4 14 2 9 0
5
这是一个关于尽可能多的电视节目的题,根据节目开始和结束的时间计算可以完整看的节目的个数。
毕竟刚讲了贪心算法,这道题目也是一个可以应用贪心算法的题目,根据节目结束的时间排序,再将节目开始的时间进行比较,总的来说还是比较简单的题目。刚学了结构体,不得不说结构体使用使题目更加简洁,还有sort排序,远比用多重循环方便得多。开始面对题目时,脑子里形成了几种写法,可以用最原始的数组比较来做,在使用sort排序时有点纠结,刚刚接触到毕竟还不熟悉,慢慢来就好了。再一次对自己的做题速度不满意。
#include <algorithm>
#include <iostream>
using namespace std;
struct str
{
int t1;
int t2;
}num[101];
int cmp(const str &a,const str &b)
{
return a.t2<b.t2;
}
int main()
{
int sum,n,i,j;
while(cin>>n&&n!=0)
{
for(i=0;i<n;i++)
cin>>num[i].t1>>num[i].t2;
sort(num,num+n,cmp);
sum=1;j=0;
for(i=1;i<n;i++)
{
if(num[i].t1>=num[j].t2)
{
sum++;
j=i;
}
}
cout<<sum<<endl;
}
return 0;
}#include <algorithm>
#include <iostream>
using namespace std;
struct str
{
int t1;
int t2;
}num[101];
int cmp(const str &a,const str &b)
{
return a.t2<b.t2;
}
int main()
{
int sum,n,i,j;
while(cin>>n&&n!=0)
{
for(i=0;i<n;i++)
cin>>num[i].t1>>num[i].t2;
sort(num,num+n,cmp);
sum=1;j=0;
for(i=1;i<n;i++)
{
if(num[i].t1>=num[j].t2)
{
sum++;
j=i;
}
}
cout<<sum<<endl;
}
return 0;
}