Submission #921695

# Submission time Handle Problem Language Result Execution time Memory
921695 2024-02-04T09:09:10 Z vjudge1 Lightning Rod (NOI18_lightningrod) C++17
0 / 100
1110 ms 262144 KB
#include <bits/stdc++.h>
#define ll long long
#define pb push_back
using namespace std;

void solve(){
    ll a,ans=0;
    cin>>a;
    map<pair<ll,ll>,ll>mp;
    vector<pair<ll,ll> > v;
    for(ll i=1;i<=a;i++){
        ll x,y;
        cin>>x>>y;
        v.pb({y,x});
    }
    sort(v.begin(),v.end());
    reverse(v.begin(),v.end());
    if(v[0].second==v[v.size()-1].second){
        cout<<a;
        return ;
    }
    for(ll i=0;i<v.size();i++){
        for(ll j=0;j<v.size();j++){
            if(mp[v[j]]==0 && j!=i && mp[v[i]]==0){
                if(abs(v[i].second-v[j].second)<=v[i].first-v[j].first){
                    mp[v[j]]=1;
                    //cout<<v[j].first<<" "<<v[j].second<<"\n";
                }
            }
        }
    }    
    for(ll i=0;i<v.size();i++){
        if(mp[v[i]]==0){
            ans++;
        }
    }
    cout<<a;
}

int main()
{
    ios_base::sync_with_stdio(0),cin.tie(0);
    ll t=1,i=1;
    //cin>>t;
    while(t--){
        //cout<<"Case ";
        //cout<<i<<':'<<"\n";
        //i++;
        solve();
    }
    return 0;
}

Compilation message

lightningrod.cpp: In function 'void solve()':
lightningrod.cpp:22:17: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   22 |     for(ll i=0;i<v.size();i++){
      |                ~^~~~~~~~~
lightningrod.cpp:23:21: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   23 |         for(ll j=0;j<v.size();j++){
      |                    ~^~~~~~~~~
lightningrod.cpp:32:17: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   32 |     for(ll i=0;i<v.size();i++){
      |                ~^~~~~~~~~
lightningrod.cpp: In function 'int main()':
lightningrod.cpp:43:12: warning: unused variable 'i' [-Wunused-variable]
   43 |     ll t=1,i=1;
      |            ^
# Verdict Execution time Memory Grader output
1 Runtime error 1103 ms 262144 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 344 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 344 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 344 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 344 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1110 ms 262144 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1103 ms 262144 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -