結果

問題 No.2923 Mayor's Job
ユーザー 👑 p-adicp-adic
提出日時 2024-10-14 11:53:28
言語 cLay
(20240714-1)
結果
CE  
実行時間 -
コード長 160 bytes
コンパイル時間 3,738 ms
コンパイル使用メモリ 170,568 KB
最終ジャッジ日時 2024-10-14 11:53:33
合計ジャッジ時間 4,096 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。

コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:629:14: warning: narrowing conversion of ‘H[i]’ from ‘long long int’ to ‘int’ [-Wnarrowing]
  629 |     W[i]={H[i],i};
      |           ~~~^
main.cpp:629:14: warning: narrowing conversion of ‘H[i]’ from ‘long long int’ to ‘int’ [-Wnarrowing]
main.cpp:631:8: error: no matching function for call to ‘sortA(long long int&, std::vector<std::vector<int> >&)’
  631 |   sortA(N,W);
      |   ~~~~~^~~~~
main.cpp:294:25: note: candidate: ‘template<class T1> void sortA(int, T1*, void*)’
  294 | template<class T1> void sortA(int N, T1 a[], void *mem = wmem){
      |                         ^~~~~
main.cpp:294:25: note:   template argument deduction/substitution failed:
main.cpp:631:8: note:   mismatched types ‘T1*’ and ‘std::vector<std::vector<int> >’
  631 |   sortA(N,W);
      |   ~~~~~^~~~~
main.cpp:471:35: note: candidate: ‘template<class T1, class T2> void sortA(int, T1*, T2*, void*)’
  471 | template<class T1, class T2> void sortA(int N, T1 a[], T2 b[], void *mem = wmem){
      |                                   ^~~~~
main.cpp:471:35: note:   template argument deduction/substitution failed:
main.cpp:631:8: note:   mismatched types ‘T1*’ and ‘std::vector<std::vector<int> >’
  631 |   sortA(N,W);
      |   ~~~~~^~~~~
main.cpp:474:45: note: candidate: ‘template<class T1, class T2, class T3> void sortA(int, T1*, T2*, T3*, void*)’
  474 | template<class T1, class T2, class T3> void sortA(int N, T1 a[], T2 b[], T3 c[], void *mem = wmem){
      |                                             ^~~~~
main.cpp:474:45: note:   template argument deduction/substitution failed:
main.cpp:631:8: note:   mismatched types ‘T1*’ and ‘std::vector<std::vector<int> >’
  631 |   sortA(N,W);
      |   ~~~~~^~~~~
main.cpp:490:55: note: candidate: ‘template<class T1, class T2, class T3, class T4> void sortA(int, T1*, T2*, T3*, T4*, void*)’
  490 | template<class T1, class T2, class T3

ソースコード

diff #

ll@N,@K,@H[N],@(X,Y)[N],k,a=0;VVI W(N);rep(i,N)W[i]={H[i],i};sortA(N,W);REP(i,N)k=W[i].second,a+=OR[j,i,N](H[j]>H[k]&&(X[j]-X[k])**2+(Y[j]-Y[k])**2<=K);wt(N-a);
0