結果
| 問題 | No.308 素数は通れません |
| コンテスト | |
| ユーザー |
mayoko_
|
| 提出日時 | 2015-12-01 01:44:58 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,924 bytes |
| 記録 | |
| コンパイル時間 | 1,141 ms |
| コンパイル使用メモリ | 94,584 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-09-14 06:11:07 |
| 合計ジャッジ時間 | 3,624 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 99 WA * 8 |
ソースコード
#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 long long 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];
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;
if (s.size() > 2) {
cout << 8 << endl;
return 0;
}
int N = stoi(s);
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;
return 0;
}
}
return 0;
}
mayoko_