結果

問題 No.1955 Not Prime
ユーザー platinumplatinum
提出日時 2022-04-13 10:17:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 1,533 bytes
コンパイル時間 2,421 ms
コンパイル使用メモリ 223,908 KB
実行使用メモリ 34,980 KB
最終ジャッジ日時 2024-06-02 09:39:53
合計ジャッジ時間 5,188 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
11,924 KB
testcase_01 AC 16 ms
11,792 KB
testcase_02 AC 16 ms
11,788 KB
testcase_03 AC 17 ms
11,792 KB
testcase_04 AC 16 ms
11,796 KB
testcase_05 AC 16 ms
11,792 KB
testcase_06 AC 22 ms
11,800 KB
testcase_07 AC 100 ms
15,064 KB
testcase_08 AC 87 ms
14,804 KB
testcase_09 AC 152 ms
14,560 KB
testcase_10 AC 151 ms
11,952 KB
testcase_11 AC 148 ms
34,980 KB
testcase_12 AC 53 ms
12,364 KB
testcase_13 AC 156 ms
15,068 KB
testcase_14 AC 41 ms
13,008 KB
testcase_15 AC 37 ms
12,364 KB
testcase_16 AC 72 ms
14,672 KB
testcase_17 AC 131 ms
18,588 KB
testcase_18 AC 154 ms
15,192 KB
testcase_19 AC 166 ms
18,140 KB
testcase_20 AC 17 ms
11,796 KB
testcase_21 AC 59 ms
12,496 KB
testcase_22 AC 17 ms
11,800 KB
testcase_23 AC 17 ms
11,924 KB
testcase_24 AC 17 ms
11,860 KB
testcase_25 AC 17 ms
11,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/twosat>
#define rep(i,n) for(int i = 0; i < (int)(n); i++)

using namespace std;
using namespace atcoder;
using LL = long long;
using P = pair<int,int>;
using vv = vector<vector<int>>;
const int INF = (int)1e9;
const LL LINF = (LL)1e18;

pair<vector<int>, vector<int>> Eratosthenes(const int N){
   vector<int> divisor(N + 1);
   vector<int> res;
   for(int i = 2; i <= N; i++){
	   if(divisor[i] == 0){
		   divisor[i] = 1;
		   res.emplace_back(i);
		   for(int j = 2 * i; j <= N; j += i) divisor[j] = i;
	   }
   }
   return pair<vector<int>, vector<int>>(res, divisor);
}

int main(){
	int N;
	cin >> N;
	assert(1 <= N && N <= 500);
	vv A(N, vector<int>(2));
	rep(i,N) cin >> A[i][0] >> A[i][1];
	rep(i,N){
		rep(j,2){
			assert(1 <= A[i][j] && A[i][j] < 1000);
		}
	}
	pair<vector<int>,vector<int>> E = Eratosthenes(1000005);
	vector<int> primes(1000010);
	for(auto p : E.first) primes[p]++;
	two_sat ts(N);
	rep(i,N){
		rep(j,N){
			if(i == j){
				rep(u,2){
					string s = to_string(A[i][u]) + to_string(A[j][u^1]);
					int a = stoi(s);
					if(primes[a]) ts.add_clause(i, u, j, u);
				}
			}
			else{
				rep(u,2){
					rep(v,2){
						string s1 = to_string(A[i][u]) + to_string(A[j][v^1]);
						string s2 = to_string(A[j][v]) + to_string(A[i][u^1]);
						int a = stoi(s1), b = stoi(s2);
						if(primes[a] or primes[b]) ts.add_clause(i, u, j, v);
					}
				}
			}
		}
	}
	bool ans = ts.satisfiable();
	if(ans) cout << "Yes" << endl;
	else cout << "No" << endl;

	return 0;
}
0