首页 > 代码库 > 最后一周训练赛第一题
最后一周训练赛第一题
Description
To get to the treasure, Jones must complete one more task. He comes across a table, where there are a number of wooden planks lying along the length of the table. He notices that the width of the table is exactly equal to the width of every plank on it. The planks are so heavy that they cannot be manually moved in any way. Some of these wooden planks are overlapping. Jones has a hammer and the Gods grant him infinite nails. The planks have to be joined to the table with nails such that every plank is connected to the table through at least one nail. The nails are of sufficient length, and have to be hammered vertically into the table. One or more planks can be joined to the table through a single nail provided they have a common overlap. Find out the minimum number of nails he needs to nail all planks to the table.
Input
- The first line of the input is a positive integer t <= 20, denoting the number of tables.
- The descriptions of the table follow one after the other.
- Table description:
- The first line of the description of the kth table contains a positive integer n (n <= 10010), the number of planks on it.
- This is followed by n lines containing the description of the planks.
- The description of each plank is a pair of integers a and b (0 <= a <= b <= 10000010), denoting the distance of the left end and right end of the plank from the left end of the table.
Output
The output must contain t lines , the kth line corresponding to the kth table. The output on the kth line must be an integer ik, the minimum number of nails required.
Sample Input
Input:
2
3
1 5
3 5
2 4
2
1 4
4 5
Output:
1
1
#include <cstdio>#include <cstring>#include <algorithm>using namespace std;const int maxn = 10100;struct Table{ int l,r; bool operator < (const Table &rhs) const{ return r < rhs.r; }}table[maxn];//感觉上面的这种定义结构体同时还重新定义了大小比较的排序方法的这个效果自己要赶快学会,用处非常的大int main(){ int kase,n; scanf("%d",&kase); while(kase--){ scanf("%d",&n); for(int i = 0;i < n;i++){ scanf("%d%d",&table[i].l,&table[i].r); } sort(table,table+n); int ans = 0,r = -1; for(int i = 0;i < n;i++){ if(r < table[i].l){ ans++; r = table[i].r; } } printf("%d\n",ans); } return 0;}
同样是最简单的贪心题,下面有一个几乎一样的实例,希望以后能够将这样一类问题好好的处理好——(建议是在使用贪心的过程中遇到超时等等情况,要求使用二分进行尝试)
hdu2037:点击这里
#include <iostream>#include <algorithm>#include <cstdio>using namespace std;const int maxn = 24;struct TV{ int l,r; bool operator < (const TV &rhs) const{ return r < rhs.r; }}table[maxn];int main(){ int n; while(cin>>n&&n){ for(int i = 0;i < n;i++){ scanf("%d%d",&table[i].l,&table[i].r); } sort(table,table+n); int ans = 0,r = -1; for(int i = 0;i < n;i++){ if(r <= table[i].l){ ans++; r = table[i].r; //cout<<"table[i].l"<<table[i].l<<"table[i].r"<<table[i].r<<endl; } } printf("%d\n",ans); } return 0;}