結果
問題 | No.1598 4×4 Grid |
ユーザー | Ryushi-tech |
提出日時 | 2021-08-01 09:48:39 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,968 bytes |
コンパイル時間 | 1,493 ms |
コンパイル使用メモリ | 168,296 KB |
実行使用メモリ | 514,728 KB |
最終ジャッジ日時 | 2024-09-16 12:44:10 |
合計ジャッジ時間 | 5,501 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | MLE | - |
testcase_02 | MLE | - |
testcase_03 | MLE | - |
testcase_04 | MLE | - |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll = long long; using vl = vector<ll>; #define rep(i,n) for(int i=0;i<(n);i++) #define rrep(i,n) for(int i=(n)-1;i>=0;i--) #define rep1(i,n) for(int i=1;i<=(n);i++) #define rrep1(i,n) for(int i=(n);i>0;i--) #define fore(i_in,a) for (auto& i_in: a) #define sz(x) (int)x.size() #define all(x) x.begin(), x.end() #define rall(x) x.rbegin(), x.rend() #define cnts(x,c) count(all(x),c) #define fio() cin.tie(nullptr);ios::sync_with_stdio(false); #define DEBUG_CTN(v) cerr<<#v<<":";for(auto itr=v.begin();itr!=v.end();itr++) cerr<<" "<<*itr; cerr<<endl template<class T> bool chmax(T &a, const T &b) {if (a<b) {a = b; return 1;} return 0;} template<class T> bool chmin(T &a, const T &b) {if (a>b) {a = b; return 1;} return 0;} template<class T> void print(const T &t) {cout<<t<<"\n";} template<class T> void PRINT(const T &t) {rep(i,sz(t)) cout<<t[i]<<" \n"[i==sz(t)-1];} const ll INF = 1LL << 62; const int iINF = 1 << 30; int K; ll dp[1<<16][1000]; int bit_count(int x) { if (x == 0) return 0; return bit_count(x >> 1) + (x & 1); } int main() { fio(); cin>>K; dp[0][500]=1; rep(mask,1<<16){ int k=bit_count(mask); rep(j,1000) if(dp[mask][j]){ rep(h,4) rep(w,4) if((mask&(1<<(h*4+w)))==0){ int tar=j; if(h){ if((mask&(1<<((h-1)*4+w)))==0) tar-=k; else tar+=k; } if(h<3){ if((mask&(1<<((h+1)*4+w)))==0) tar-=k; else tar+=k; } if(w){ if((mask&(1<<(h*4+w-1)))==0) tar-=k; else tar+=k; } if(w<3){ if((mask&(1<<(h*4+w+1)))==0) tar-=k; else tar+=k; } dp[mask^(1<<(h*4+w))][tar]+=dp[mask][j]; } } } print(dp[(1<<16)-1][500+K]); }