1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
| #include <bits/stdc++.h> using namespace std; using ll = long long; using PII = pair<ll, ll>;
inline ll dis(PII p) { return p.second - p.first; }
bool is_comp[50010]; int primes[6000], tot = 0; void prime(int n) { for (int i = 2; i <= n; i++) { if (!is_comp[i]) primes[tot++] = i; for (int j = 0; j < tot && i * primes[j] <= n; j++) { is_comp[i * primes[j]] = true; if (i % primes[j] == 0) break; } } }
bool st[1000010];
int main() { prime(50000); ll l, r; while (cin >> l >> r) { memset(st, 0, sizeof(st)); if (l == 1) st[0] = true; for (int i = 0; i < tot; i++) { int p = primes[i]; ll k = (l + p - 1) / p; if (k < 2) k = 2; for (ll j = k * p; j <= r; j += p) st[j - l] = true; } ll pre, cur, cnt = 0; PII ans1 = {0, 0x3f3f3f3f}, ans2 = {0, 0}; for (ll i = l; i <= r; i++) { if (!st[i - l]) { pre = cur, cur = i, cnt++; if (cnt >= 2) { if (cur - pre < dis(ans1)) ans1 = make_pair(pre, cur); if (cur - pre > dis(ans2)) ans2 = make_pair(pre, cur); } } } if (cnt < 2) printf("There are no adjacent primes.\n"); else printf("%lld,%lld are closest, %lld,%lld are most distant.\n", ans1.first, ans1.second, ans2.first, ans2.second); } }
|