結果
問題 | No.2375 watasou and hibit's baseball |
ユーザー | warabi0906 |
提出日時 | 2023-06-21 18:17:41 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,202 bytes |
コンパイル時間 | 1,685 ms |
コンパイル使用メモリ | 167,416 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-07-08 08:47:27 |
合計ジャッジ時間 | 4,921 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 181 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | TLE | - |
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; const int Limit=3800; int N,A,B,X[15],Y[15],K[15],ans=1,start,second; short ok[15][15][15]; void dfs(int v,int p,int vis){ ans=max(ans,__builtin_popcount(vis)); clock_t t=clock(); if((start*(N-1)+second)*(Limit/N/(N-1))>t)return; for(int nxt=0;nxt<N;nxt++){ if(vis&(1<<nxt))continue; if(!ok[p][v][nxt])continue; dfs(nxt,v,vis|(1<<nxt)); } return; } int main(void){ scanf("%d%d%d",&N,&A,&B); for(int i=0;i<N;i++)scanf("%d%d%d",&X[i],&Y[i],&K[i]); for(int i=0;i<N;i++){ for(int j=0;j<N;j++){ if(i==j)continue; for(int k=0;k<N;k++){ if(i==k or j==k)continue; ok[i][j][k]=0; if(abs(X[i]-X[k])+abs(X[j]-X[k])+abs(Y[i]-Y[k])+abs(Y[j]-Y[k])>=A or abs(K[j]-K[k])>=B)ok[i][j][k]=1; } } } for(int i=0;i<N;i++){ start=i; for(int j=0;j<N;j++){ if(start==second)continue; if(abs(X[start]-X[second])+abs(Y[start]-Y[second])<A and abs(K[start]-K[second])<B)continue; dfs(second,start,(1<<start)|(1<<second)); } } printf("%d\n",ans); }