結果
問題 | No.2375 watasou and hibit's baseball |
ユーザー | FplusFplusF |
提出日時 | 2023-07-07 22:33:11 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,481 bytes |
コンパイル時間 | 2,501 ms |
コンパイル使用メモリ | 209,296 KB |
実行使用メモリ | 38,016 KB |
最終ジャッジ日時 | 2024-07-21 18:45:09 |
合計ジャッジ時間 | 8,876 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 93 ms
17,664 KB |
testcase_04 | AC | 3 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 238 ms
37,888 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 46 ms
9,984 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 9 ms
6,940 KB |
testcase_12 | AC | 299 ms
37,888 KB |
testcase_13 | WA | - |
testcase_14 | AC | 2 ms
6,944 KB |
testcase_15 | AC | 23 ms
6,940 KB |
testcase_16 | AC | 8 ms
6,940 KB |
testcase_17 | WA | - |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | AC | 2 ms
6,940 KB |
testcase_20 | AC | 10 ms
6,944 KB |
testcase_21 | WA | - |
testcase_22 | AC | 2 ms
6,944 KB |
testcase_23 | AC | 231 ms
37,888 KB |
testcase_24 | WA | - |
testcase_25 | AC | 2 ms
6,944 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 289 ms
37,760 KB |
testcase_31 | AC | 259 ms
37,760 KB |
testcase_32 | WA | - |
testcase_33 | AC | 258 ms
37,888 KB |
testcase_34 | WA | - |
testcase_35 | AC | 218 ms
37,888 KB |
testcase_36 | AC | 205 ms
37,888 KB |
testcase_37 | WA | - |
testcase_38 | AC | 194 ms
37,888 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll=long long; using pll=pair<ll,ll>; using tll=tuple<ll,ll,ll>; using ld=long double; const ll INF=(1ll<<60); #define rep(i,n) for (ll i=0;i<(ll)(n);i++) #define all(v) v.begin(),v.end() template<class T> void chmin(T &a,T b){ if(a>b){ a=b; } } template<class T> void chmax(T &a,T b){ if(a<b){ a=b; } } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); ll n,a,b; cin >> n >> a >> b; vector<ll> x(n),y(n),k(n); rep(i,n) cin >> x[i] >> y[i] >> k[i]; auto dist=[&](ll i,ll j){ return abs(x[i]-x[j])+abs(y[i]+y[j]); }; vector<vector<vector<ll>>> dp(1ll<<n,vector<vector<ll>>(n,vector<ll>(n,0))); rep(i,n){ rep(j,n){ if(i==j) continue; if(a<=dist(i,j)||b<=abs(k[i]-k[j])) dp[((1ll<<i)|(1ll<<j))][i][j]=1; } } rep(i,1ll<<n){ rep(j,n){ rep(l,n){ rep(m,n){ if(i&(1ll<<m)) continue; if(b<=abs(k[m]-k[j])||a<=dist(m,j)+dist(m,l)) dp[(i|(1ll<<m))][m][j]|=dp[i][j][l]; } } } } auto cnt=[&](ll p){ ll ret=0; rep(i,n){ if(p&(1ll<<i)) ret++; } return ret; }; ll ans=1; rep(i,1ll<<n){ rep(j,n){ rep(k,n){ if(dp[i][j][k]) chmax(ans,cnt(i)); } } } cout << ans << '\n'; }