#include <bits/stdc++.h>
#include <iomanip>
#define ll long long
//#define int long long
#define pb push_back
#define F first
#define S second
#define st string
#define pii pair<int,int>
#define sz(x) x.size()
#define all(x) x.begin(), x.end()
#define vi vector<int>
#define mii map<int,int>
#define mll map<ll,ll>
#define YES cout<<"YES\n";
#define NO cout<<"NO\n";
#define yes cout<<"Yes\n";
#define no cout<<"No\n";
#define lf else if
using namespace std;
signed main(){
ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0);
//srand( time(0));
//freopen("sum.in", "r", stdin);
//freopen("sum.out", "w", stdout);
ll tests=1;
//cin>>tests;
for(ll i=1;i<=tests;i++)
{
//cout<<"Case "<<i<<":\n";
ll n,mx=0,mn=10;
cin>>n;
vector <pair <ll,ll> > v(n);
for(ll i=0;i<n;i++)
{
cin>>v[i].S>>v[i].F;
mx=max(mx,v[i].F);
mn=min(mn,v[i].F);
}
ll ans=n,an=n;
if(mx==1 && mn==1){cout<<n;return 0;}
sort(v.begin(),v.end());
for(ll i=n-1;i>=0;i++)
{
for(ll j=n-1;j>=0;j++)
{
if(abs(v[i].S-v[j].S)<=v[i].F-v[j].F && i!=j)an--;
}
}
cout<<an;
}
}
Compilation message
lightningrod.cpp: In function 'int main()':
lightningrod.cpp:40:12: warning: unused variable 'ans' [-Wunused-variable]
40 | ll ans=n,an=n;
| ^~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1065 ms |
152108 KB |
Output is correct |
2 |
Correct |
1061 ms |
151572 KB |
Output is correct |
3 |
Correct |
1061 ms |
147540 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
2054 ms |
348 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
2054 ms |
348 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
2054 ms |
348 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
2054 ms |
348 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
2048 ms |
156244 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1065 ms |
152108 KB |
Output is correct |
2 |
Correct |
1061 ms |
151572 KB |
Output is correct |
3 |
Correct |
1061 ms |
147540 KB |
Output is correct |
4 |
Execution timed out |
2054 ms |
348 KB |
Time limit exceeded |
5 |
Halted |
0 ms |
0 KB |
- |