結果
問題 | No.1598 4×4 Grid |
ユーザー | 👑 Nachia |
提出日時 | 2021-07-09 22:02:18 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2,484 ms / 4,000 ms |
コード長 | 1,124 bytes |
コンパイル時間 | 3,096 ms |
コンパイル使用メモリ | 161,736 KB |
実行使用メモリ | 188,644 KB |
最終ジャッジ日時 | 2024-07-01 16:28:59 |
合計ジャッジ時間 | 30,630 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2,469 ms
188,392 KB |
testcase_01 | AC | 2,455 ms
188,520 KB |
testcase_02 | AC | 2,484 ms
188,516 KB |
testcase_03 | AC | 2,428 ms
188,512 KB |
testcase_04 | AC | 2,443 ms
188,388 KB |
testcase_05 | AC | 2,448 ms
188,388 KB |
testcase_06 | AC | 2,450 ms
188,516 KB |
testcase_07 | AC | 2,419 ms
188,388 KB |
testcase_08 | AC | 2,450 ms
188,512 KB |
testcase_09 | AC | 2,449 ms
188,644 KB |
ソースコード
#include <atcoder/all> #include <iostream> #include <vector> #include <algorithm> #include <set> using namespace atcoder; using namespace std; using ll = long long; using ull = unsigned long long; const ull MOD = 1000000007; using mll = static_modint<1000000007>; #define rep(i,n) for(int i=0; i<(n); i++) int C[1<<16]; ll dp[361][1<<16] = {}; vector<int> E[16]; int main(){ C[0] = 0; rep(i,16) rep(j,1<<i) C[j+(1<<i)] = C[j] + 1; rep(y,4) rep(x,3) E[y*4+x].push_back(y*4+x+1); rep(y,4) rep(x,3) E[y*4+x+1].push_back(y*4+x); rep(y,3) rep(x,4) E[y*4+x].push_back(y*4+x+4); rep(y,3) rep(x,4) E[y*4+x+4].push_back(y*4+x); dp[0][0] = 1; rep(i,1<<16) rep(nx,16) if(0==(i&(1<<nx))){ ll dx = 0; int c = 15 - C[i]; for(int e : E[nx]){ if(i&(1<<e)) dx -= c; else dx += c; } rep(k,361){ if(k + dx < 0 || 360 < k + dx) continue; dp[k+dx][i|(1<<nx)] += dp[k][i]; } } int K; cin >> K; cout << dp[K][(1<<16)-1] << endl; return 0; } struct ios_do_not_sync{ ios_do_not_sync(){ ios::sync_with_stdio(false); cin.tie(nullptr); } } ios_do_not_sync_inst;