結果

問題 No.2810 Have Another Go (Hard)
ユーザー shobonvipshobonvip
提出日時 2024-07-12 23:54:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 4,012 bytes
コンパイル時間 4,358 ms
コンパイル使用メモリ 275,732 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-12 23:54:45
合計ジャッジ時間 7,981 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

//* ATCODER
#include<atcoder/all>
using namespace atcoder;
typedef modint998244353 mint;
//*/

/* BOOST MULTIPRECISION
#include<boost/multiprecision/cpp_int.hpp>
using namespace boost::multiprecision;
//*/

typedef long long ll;

#define rep(i, s, n) for (int i = (int)(s); i < (int)(n); i++)
#define rrep(i, s, n) for (int i = (int)(n)-1; i >= (int)(s); i--)

template <typename T> bool chmin(T &a, const T &b) {
	if (a <= b) return false;
	a = b;
	return true;
}

template <typename T> bool chmax(T &a, const T &b) {
	if (a >= b) return false;
	a = b;
	return true;
}

template <typename T> T max(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmax(ret, a[i]);
	return ret;
}

template <typename T> T min(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmin(ret, a[i]);
	return ret;
}

template <typename T> T sum(vector<T> &a){
	T ret = 0;
	for (int i=0; i<(int)a.size(); i++) ret += a[i];
	return ret;
}

int main(){

	// n >= 7
	ll n, m, k; cin >> n >> m >> k;
	vector<ll> c(k);
	
	// jump 1 time
	vector mat(60, vector(6, vector<mint>(6)));
	rep(i,0,5){
		mat[0][i][i+1] = 1;
	}
	rep(i,0,6){
		mat[0][5][i] = 1;
	}
	rep(num,0,59){
		rep(i,0,6){
			rep(j,0,6){
				rep(k,0,6){
					mat[num+1][i][j] += mat[num][i][k] * mat[num][k][j];
				}
			}
		}
	}

	// jumpover!
	vector jumpover(6, vector<mint>(6));
	rep(i,0,6){
		vector<mint> dp(13);
		dp[i] = 1;
		rep(j,0,13){
			if (j == 6) continue;
			rep(k,j-6,j){
				if (k < 0) continue;
				dp[j] += dp[k];
			}
		}
		rep(j,0,6){
			jumpover[j][i] = dp[j+7];
		}
	}

	// jump n-7 times, and jump one more time
	vector m_seni(30, vector(6, vector<mint>(6)));
	rep(i,0,6){
		vector<mint> a(6);
		a[i] = 1;
		rep(num,0,30){
			if ((n-7)>>num&1){
				vector<mint> na(6);
				rep(x,0,6){
					rep(y,0,6){
						na[x] += mat[num][x][y] * a[y];
					}
				}
				swap(a, na);
			}
		}
		vector<mint> na(6);
		rep(x,0,6){
			rep(y,0,6){
				na[x] += jumpover[x][y] * a[y];
			}
		}
		swap(a, na);
		rep(x,0,6){
			m_seni[0][x][i] = a[x];
		}
	}

	rep(num,0,29){
		rep(i,0,6){
			rep(j,0,6){
				rep(k,0,6){
					m_seni[num+1][i][j] += m_seni[num][i][k] * m_seni[num][k][j];
				}
			}
		}
	}

	// 最終局面:愚直!端にきているとする.
	vector<mint> last(6);
	rep(x,0,6){
		vector<mint> dp(7);
		dp[x] = 1;
		rep(i,0,6){
			rep(j,1,7){
				dp[min(6,i+j)] += dp[i];
			}
		}
		last[x] = dp[6];
	}

	mint alls = 0;
	{
		vector<mint> a(6);
		a[5] = 1;
		rep(num,0,60){
			if ((n*m-1)>>num&1){
				vector<mint> na(6);
				rep(i,0,6){
					rep(j,0,6){
						na[i] += mat[num][i][j] * a[j];
					}
				}
				swap(a, na);
			}
		}
		rep(i,0,6){
			alls += a[i] * (i+1);
		}
	}

	auto solve = [&](ll x) -> mint {
		vector<mint> a(6);
		a[5] = 1;

		// 最初のジャンプまで
		rep(num,0,30){
			if ((x-1)>>num&1){
				vector<mint> na(6);
				rep(i,0,6){
					rep(j,0,6){
						na[i] += mat[num][i][j] * a[j];
					}
				}
				swap(na, a);
			}
		}

		// ジャンプ!
		vector<mint> na(6);
		rep(x,0,6){
			rep(y,0,6){
				na[x] += jumpover[x][y] * a[y];
			}
		}
		swap(a, na);

		// m-1 回ジャンプ 
		rep(num,0,30){
			if ((m-1)>>num&1){
				vector<mint> na(6);
				rep(i,0,6){
					rep(j,0,6){
						na[i] += mat[num][i][j] * a[j];
					}
				}
				swap(na, a);
			}
		}
		
		// 今の限界... i = c[i]+6 (mod n)
		// i = n-1 まで飛ぶ
		// n-7-c[i]
		// n-7-c[i] 回ジャンプ


		if (n-7-x < 0){
			cout << "kita" << endl;
			ll f = x+7-n;
			a.resize(6-f);
			reverse(a.begin(), a.end());
			rep(j,0,f)a.push_back(0);
			reverse(a.begin(), a.end());			
		}else{
			rep(num,0,30){
				if ((n-7-x)>>num&1){
					vector<mint> na(6);
					rep(i,0,6){
						rep(j,0,6){
							na[i] += mat[num][i][j] * a[j];
						}
					}
					swap(na, a);
				}
			}
		}
		mint ans = alls;
		rep(i,0,6){
			ans -= a[i] * (i+1);
		}



		return ans;
	};

	rep(i,0,k){
		cin >> c[i];
		cout << solve(c[i]).val() << '\n';
	}

}

0