結果
問題 | No.2923 Mayor's Job |
ユーザー | rotti_coder |
提出日時 | 2024-10-12 15:05:27 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 564 ms / 2,000 ms |
コード長 | 1,432 bytes |
コンパイル時間 | 1,226 ms |
コンパイル使用メモリ | 99,936 KB |
実行使用メモリ | 32,212 KB |
最終ジャッジ日時 | 2024-10-12 15:05:40 |
合計ジャッジ時間 | 3,359 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 3 ms
6,820 KB |
testcase_03 | AC | 7 ms
6,816 KB |
testcase_04 | AC | 564 ms
32,212 KB |
testcase_05 | AC | 11 ms
6,816 KB |
testcase_06 | AC | 9 ms
6,820 KB |
testcase_07 | AC | 18 ms
6,820 KB |
testcase_08 | AC | 19 ms
6,816 KB |
testcase_09 | AC | 11 ms
6,820 KB |
testcase_10 | AC | 18 ms
6,816 KB |
testcase_11 | AC | 471 ms
30,764 KB |
testcase_12 | AC | 250 ms
18,516 KB |
testcase_13 | AC | 34 ms
6,816 KB |
testcase_14 | AC | 4 ms
6,816 KB |
testcase_15 | AC | 2 ms
6,816 KB |
testcase_16 | AC | 2 ms
6,820 KB |
testcase_17 | AC | 2 ms
6,816 KB |
testcase_18 | AC | 2 ms
6,816 KB |
testcase_19 | AC | 2 ms
6,820 KB |
ソースコード
#include<iostream> #include<vector> #include<cmath> #include<queue> using namespace std; long long f(long long a,long long b,long long c,long long d){ return (a-c)*(a-c)+(b-d)*(b-d); } int main() { long long n,k; cin >> n >> k; k*=k; vector<int>h(n); for(int i=0;i<n;i++)cin >> h[i]; vector<pair<int,int>>num(n); for(int i=0;i<n;i++)cin >> num[i].first >> num[i].second; vector<vector<int>>graph(n); vector<int>amount(n,0); for(int i=0;i<n;i++)for(int j=i+1;j<n;j++)if(f(num[i].first,num[i].second,num[j].first,num[j].second)<=k){ if(h[i]>h[j]){ graph[j].emplace_back(i+1); amount[i]++; } else if(h[i]<h[j]){ graph[i].emplace_back(j+1); amount[j]++; } } vector<bool>life(n,true); priority_queue<pair<int,int>,vector<pair<int,int>>,greater<pair<int,int>>>prq; for(int i=0;i<n;i++)prq.push(make_pair(amount[i],i+1)); while(prq.size()){ pair<int,int>hako=prq.top(); prq.pop(); int a=hako.second; if(amount[a-1]!=hako.first || life[a-1]==false)continue; bool ok=false; for(int i=0;i<graph[a-1].size();i++)if(life[graph[a-1][i]-1])ok=true; if(ok==false)continue; for(int i=0;i<graph[a-1].size();i++)if(life[graph[a-1][i]-1]){ amount[graph[a-1][i]-1]--; prq.push(make_pair(amount[graph[a-1][i]-1],graph[a-1][i])); } life[a-1]=false; } int cnt=0; for(int i=0;i<n;i++)if(life[i])cnt++; cout << cnt << endl; }