您的位置:首页 > 其它

A. Cottage Village

2016-04-21 19:02 239 查看
A. Cottage Villagetime limit per test2 secondsmemory limit per test64 megabytesinputstandard inputoutputstandard outputA new cottage village called ?Flatville? is being built in Flatland. By now they have already built in ?Flatville? n square houses with the centres on the Оx-axis. The houses' sides are parallel to the coordinate axes. It's known that no two houses overlap, but they can touch each other.The architect bureau, where Peter works, was commissioned to build a new house in ?Flatville?. The customer wants his future house to be on the Оx-axis, to be square in shape, have a side t, and touch at least one of the already built houses. For sure, its sides should be parallel to the coordinate axes, its centre should be on the Ox-axis and it shouldn't overlap any of the houses in the village.Peter was given a list of all the houses in ?Flatville?. Would you help him find the amount of possible positions of the new house?InputThe first line of the input data contains numbers n and t (1?≤?n,?t?≤?1000). Then there follow n lines, each of them contains two space-separated integer numbers: xi ai, where xi — x-coordinate of the centre of the i-th house, and ai — length of its side (?-?1000?≤?xi?≤?1000, 1?≤?ai?≤?1000).OutputOutput the amount of possible positions of the new house.Sample test(s)input
2 2
0 4
6 2
output
4
input
2 20 45 2
output
3
input
2 30 45 2
output
2
NoteIt is possible for the x-coordinate of the new house to have non-integer value.两种情况 区间内能放一个或者两个 
/* ***********************************************
Author        :
Created Time  :2015/6/9 15:48:29
File Name     :6.cpp
************************************************ */
#include <iostream>
#include <cstring>
#include <cstdlib>
#include <stdio.h>
#include <algorithm>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <string>
#include <math.h>
#include <stdlib.h>
#include <iomanip>
#include <list>
#include <deque>
#include <stack>
#define ull unsigned long long
#define ll long long
#define mod 90001
#define INF 1<<30
#define maxn 10000+10
#define cle(a) memset(a,0,sizeof(a))
const ull inf = 1LL << 61;
const double eps=1e-5;
using namespace std;

bool cmp(int a,int b){
return a>b;
}
pair<double,double>p[maxn];
int main()
{
#ifndef ONLINE_JUDGE
//freopen("in.txt","r",stdin);
#endif
//freopen("out.txt","w",stdout);
int n,t;
while(cin>>n>>t){
for(int i=0;i<n;i++){
cin>>p[i].first>>p[i].second;
}
sort(p,p+n);
int ans=2;
//1   1   1   1
for(int i=1;i<n;i++){
if(p[i].first-p[i].second*1.0/2-p[i-1].first-p[i-1].second*1.0/2==t)
ans++;
else if(p[i].first-p[i].second*1.0/2-p[i-1].first-p[i-1].second*1.0/2>t){
ans+=2;
}
}
cout<<ans<<endl;
}
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: