結果
問題 | No.308 素数は通れません |
ユーザー |
![]() |
提出日時 | 2015-12-02 21:25:07 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 6 ms / 1,000 ms |
コード長 | 3,020 bytes |
コンパイル時間 | 1,157 ms |
コンパイル使用メモリ | 102,376 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-27 18:31:40 |
合計ジャッジ時間 | 3,752 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 107 |
ソースコード
#include<cstdio>#include<cstdlib>#include<cstring>#include<cmath>//#include<cctype>#include<climits>#include<iostream>#include<string>#include<vector>#include<map>//#include<list>#include<queue>#include<deque>#include<algorithm>//#include<numeric>#include<utility>#include<complex>//#include<memory>#include<functional>#include<cassert>#include<set>#include<stack>const int dx[] = {1, 0, -1, 0};const int dy[] = {0, 1, 0, -1};using namespace std;typedef __int128 ll;typedef vector<int> vi;typedef vector<ll> vll;typedef pair<int, int> pii;const int MAXN = 100;bool prime[MAXN];bool done[MAXN][MAXN];ll mulMod(ll x, ll k, ll mod) {if (k == 0) return 0;if (k%2 == 0) return mulMod((x+x)%mod, k/2, mod);return (x+mulMod(x, k-1, mod)) % mod;}ll pow_mod(ll a, ll p, ll mod) {if (a == 0) return 0;if (p == 0) return 1;if (p == 1) return a;if (p%2) return mulMod(a, pow_mod(a, p-1, mod), mod);ll tmp = pow_mod(a, p/2, mod);return mulMod(tmp, tmp, mod);}bool check(ll a, ll n, int k, ll q) {ll tmp = pow_mod(a, q, n);if (tmp == 1) return true;for (int i = 0; i < k; i++) {if (tmp == n-1) return true;tmp = mulMod(tmp, tmp, n);}return false;}bool isPrime(ll n) {ll q = n-1;int k = 0;while (q%2==0) {q /= 2;k++;}vector<ll> p = {2, 3, 5, 7, 11, 13, 17, 19, 23, 27, 29, 31, 37, 41};for (ll a : p) {if (!check(a, n, k, q)) return false;}return true;}int main() {cin.tie(0);ios::sync_with_stdio(false);for (int i = 2; i < MAXN; i++) prime[i] = true;for (int i = 2; i < MAXN; i++) {if (prime[i]) for (int j = 2; j*i < MAXN; j++) prime[i*j] = false;}string s;cin >> s;ll N = 0;for (char el : s) N = N*10+(el-'0');if (N < 100) {for (int w = 2; w < N; w++) {int h = N/w+(N%w!=0);vector<vi> board(h, vi(w));for (int j = 0; j < N; j++) {board[j/w][j%w] = j+1;}assert(board[(N-1)/w][(N-1)%w] == N);queue<pii> que;memset(done, false, sizeof(done));que.push(pii(0, 0));done[0][0] = true;while (!que.empty()) {pii p = que.front(); que.pop();for (int k = 0; k < 4; k++) {int ny = p.first+dy[k];int nx = p.second+dx[k];if (ny < 0 || ny >= h || nx < 0 || nx >= w || board[ny][nx] == 0 || prime[board[ny][nx]]) continue;if (done[ny][nx]) continue;done[ny][nx] = true;que.push(pii(ny, nx));}}if (done[(N-1)/w][(N-1)%w]) {cout << w << endl;break;}}} else {if (N%8 == 1 && isPrime(N-8)) cout << 14 << endl;else cout << 8 << endl;}return 0;}