結果
問題 | No.2375 watasou and hibit's baseball |
ユーザー | warabi0906 |
提出日時 | 2023-06-22 17:55:59 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 857 bytes |
コンパイル時間 | 1,588 ms |
コンパイル使用メモリ | 171,480 KB |
実行使用メモリ | 14,080 KB |
最終ジャッジ日時 | 2024-07-08 08:48:11 |
合計ジャッジ時間 | 7,945 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int N,A,B,X[15],Y[15],K[15]; int main(){ int beg=clock(); srand(time(NULL)); scanf("%d%d%d",&N,&A,&B); for(int i=0;i<N;i++)scanf("%d%d%d",&X[i],&Y[i],&K[i]); auto d=[&](int a,int b){ return abs(X[a]-X[b])+abs(Y[a]-Y[b]); }; int ans=1; do{ vector<int> P(N);iota(P.begin(),P.end(),0); random_device dev; mt19937 mt(dev()); shuffle(P.begin(),P.end(),mt); int cnt=1; for(int i=1;i<N;i++){ int m=0; m+=d(P[i-1],P[i]); if(1<i)m+=d(P[i-2],P[i]); if(m<A and abs(K[P[i]]-K[P[i-1]])<B)break; ++cnt; } ans=max(ans,cnt); if(3.45<(double)(clock()-beg)/CLOCKS_PER_SEC){ printf("%d\n",ans); return 0; } }while(true); }