結果
問題 | No.1884 Sequence |
ユーザー | sahiya |
提出日時 | 2022-03-25 21:43:25 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,514 bytes |
コンパイル時間 | 1,919 ms |
コンパイル使用メモリ | 128,740 KB |
実行使用メモリ | 18,928 KB |
最終ジャッジ日時 | 2024-10-14 05:39:17 |
合計ジャッジ時間 | 7,487 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | RE | - |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 218 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 246 ms
18,924 KB |
testcase_11 | AC | 247 ms
18,792 KB |
testcase_12 | AC | 11 ms
5,248 KB |
testcase_13 | AC | 12 ms
5,248 KB |
testcase_14 | AC | 13 ms
5,248 KB |
testcase_15 | AC | 107 ms
11,888 KB |
testcase_16 | AC | 238 ms
18,920 KB |
testcase_17 | AC | 45 ms
8,892 KB |
testcase_18 | AC | 79 ms
12,776 KB |
testcase_19 | AC | 61 ms
10,604 KB |
testcase_20 | AC | 79 ms
10,040 KB |
testcase_21 | AC | 49 ms
8,032 KB |
testcase_22 | AC | 94 ms
11,000 KB |
testcase_23 | AC | 247 ms
18,928 KB |
testcase_24 | AC | 247 ms
18,928 KB |
testcase_25 | AC | 241 ms
18,800 KB |
testcase_26 | AC | 260 ms
18,920 KB |
testcase_27 | RE | - |
testcase_28 | AC | 13 ms
5,248 KB |
testcase_29 | AC | 154 ms
5,248 KB |
testcase_30 | AC | 13 ms
5,248 KB |
testcase_31 | AC | 78 ms
10,348 KB |
testcase_32 | AC | 230 ms
18,088 KB |
testcase_33 | AC | 40 ms
6,512 KB |
testcase_34 | AC | 40 ms
6,380 KB |
testcase_35 | AC | 15 ms
5,248 KB |
testcase_36 | AC | 30 ms
5,776 KB |
testcase_37 | AC | 40 ms
6,504 KB |
testcase_38 | AC | 37 ms
6,508 KB |
testcase_39 | AC | 19 ms
5,248 KB |
testcase_40 | AC | 20 ms
5,252 KB |
testcase_41 | AC | 174 ms
15,420 KB |
testcase_42 | AC | 172 ms
15,424 KB |
ソースコード
#pragma GCC target("avx2") #pragma GCC optimize("unroll-loops") #include <algorithm> #include <bitset> #include <climits> #include <cmath> #include <cstring> #include <deque> #include <forward_list> #include <functional> #include <iomanip> #include <iostream> #include <list> #include <map> #include <queue> #include <set> #include <stack> #include <string> #include <unordered_map> #include <unordered_set> #include <utility> #include <vector> #define ALL(x) (x).begin(), (x).end() using namespace std; typedef long long ll; typedef unsigned long long ull; typedef pair<int, int> pii; typedef pair<ll, ll> pll; struct edge { int to, cost, id; }; const double PI = 3.14159265358979323846; const double PI2 = PI * 2.0; const double EPS = 1E-09; const ll MOD = 1E+09 + 7; // =998244353; const ll INFL = 1E18; const int INFI = 1E09; const int MAX_N = 2E+05; ll dx[4] = { -1, 1, 0, 0 }, dy[4] = { 0, 0, -1, 1 }; int N; ll A[MAX_N + 1]; template <typename T> T gcd(T a, T b) { if (b == 0) return a; return gcd(b, a % b); } vector<ll> divisor(ll n) { vector<ll> ans; for (ll i = 1; i * i <= n; i++) { if (n % i == 0) { ans.push_back(i); if (i * i != n) ans.push_back(n / i); } } return ans; } int main() { ios::sync_with_stdio(false); cin.tie(nullptr); cin >> N; int k = 0; map<ll, int> mp; vector<ll> a; bool db = false; for (int i = 1; i <= N; i++) { cin >> A[i]; if (A[i] > 0) { k++; a.push_back(A[i]); if (mp[A[i]] > 0) { db = true; } mp[A[i]]++; } } sort(ALL(a)); bool ans = false; if (a.size() == 1) { ans = true; } else if (db) { ans = true; for (int i = 0; i + 1 < a.size(); ++i) { if (a[i] != a[i + 1]) ans = false; } } else { ll g = a[1] - a[0]; for (int i = 2; i < a.size(); ++i) { g = gcd(g, a[i] - a[i - 1]); } auto d = divisor(g); for (ll dd : d) { if ((a.back() - a[0]) / dd + 1 <= N) { ans = true; break; } } } // for (int i = 0; i < N; i++) { // for (int j = 0; j < N; j++) { // cout << "i = " << i << ", j = " << j << ", dp = " << dp[i][j] << "\n"; // } // } cout << (ans ? "Yes" : "No") << "\n"; return 0; }