結果

問題 No.2923 Mayor's Job
ユーザー GOTKAKOGOTKAKO
提出日時 2024-10-12 14:43:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 14 ms / 2,000 ms
コード長 2,079 bytes
コンパイル時間 2,352 ms
コンパイル使用メモリ 211,364 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-12 14:43:16
合計ジャッジ時間 2,992 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 14 ms
5,248 KB
testcase_04 AC 5 ms
5,248 KB
testcase_05 AC 6 ms
5,248 KB
testcase_06 AC 9 ms
5,248 KB
testcase_07 AC 7 ms
5,248 KB
testcase_08 AC 6 ms
5,248 KB
testcase_09 AC 7 ms
5,248 KB
testcase_10 AC 6 ms
5,248 KB
testcase_11 AC 6 ms
5,248 KB
testcase_12 AC 5 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
6,820 KB
testcase_19 AC 1 ms
6,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

template<typename T>
struct Point{
    public:
    T x,y;
    Point() : x(0),y(0) {}
    Point(T a,T b) : x(a),y(b) {}
    Point &operator=(const Point &b) = default;
    Point operator+(const Point &b){return Point(x+b.x,y+b.y);}
    Point operator-(const Point &b){return Point(x-b.x,y-b.y);}
    Point operator+=(const Point &b){return *this=*this+b;}
    Point operator-=(const Point &b){return *this=*this-b;}
    bool operator==(const Point &b){return x==b.x && y==b.y;}
    bool operator!=(const Point &b){return x!=b.x || y!=b.y;}
    bool operator<(const Point &b){
        if(x == b.x) return y < b.y;
        else return x < b.x; 
    }
    bool operator<=(const Point &b){return (*this) < b || (*this) == b;}
    bool operator>(const Point &b){return !((*this) <= b);}
    bool operator>=(const Point &b){return !((*this) < b);}

    friend T inner(const Point a,const Point b){return a.x*b.x+a.y*b.y;}
    friend T cross(const Point a,const Point b){return a.x*b.y-a.y*b.x;}
    friend T twodist(const Point a,const Point b){return (a.x-b.x)*(a.x-b.x)+(a.y-b.y)*(a.y-b.y);}//2乗で返す.
};
template<typename T>
istream &operator>>(istream &is,Point<T> &a){
    is >> a.x >> a.y;
    return is;
}
template<typename T>
ostream &operator<<(ostream &os,Point<T> &a){
    os << a.x << " " << a.y;
    return os;
}

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    long long N,K; cin >> N >> K;
    vector<pair<int,int>> H(N);
    int idx = 0;
    for(auto &[h,p] : H) cin >> h,p = idx++;
    sort(H.begin(),H.end());
    vector<Point<long long>> P(N);
    for(auto &p : P) cin >> p;

    vector<bool> del(N);
    for(int i=0; i<N; i++) for(int k=i+1; k<N; k++){
        if(del.at(i) || del.at(k)) continue;
        auto [h,p1] = H.at(i); 
        auto [h2,p2] = H.at(k);
        if(h == h2) continue;
        long long dist = twodist(P.at(p1),P.at(p2));
        if(dist <= K*K) del.at(i) = true;
    }
    int answer = 0;
    for(auto d : del) if(!d) answer++;
    cout << answer << endl;
}

0