結果

問題 No.1884 Sequence
ユーザー hiikunZhiikunZ
提出日時 2024-07-14 08:11:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 196 ms / 2,000 ms
コード長 1,726 bytes
コンパイル時間 2,553 ms
コンパイル使用メモリ 213,408 KB
実行使用メモリ 27,660 KB
最終ジャッジ日時 2024-07-14 08:12:03
合計ジャッジ時間 8,436 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 193 ms
14,232 KB
testcase_11 AC 175 ms
14,112 KB
testcase_12 AC 46 ms
10,980 KB
testcase_13 AC 54 ms
14,052 KB
testcase_14 AC 29 ms
6,940 KB
testcase_15 AC 97 ms
9,508 KB
testcase_16 AC 155 ms
14,236 KB
testcase_17 AC 89 ms
14,240 KB
testcase_18 AC 116 ms
14,384 KB
testcase_19 AC 92 ms
11,064 KB
testcase_20 AC 84 ms
7,848 KB
testcase_21 AC 70 ms
7,040 KB
testcase_22 AC 89 ms
9,456 KB
testcase_23 AC 158 ms
14,240 KB
testcase_24 AC 156 ms
14,236 KB
testcase_25 AC 143 ms
14,236 KB
testcase_26 AC 158 ms
14,364 KB
testcase_27 AC 32 ms
6,940 KB
testcase_28 AC 33 ms
6,944 KB
testcase_29 AC 32 ms
6,940 KB
testcase_30 AC 33 ms
6,944 KB
testcase_31 AC 78 ms
7,704 KB
testcase_32 AC 172 ms
14,240 KB
testcase_33 AC 112 ms
6,944 KB
testcase_34 AC 112 ms
6,944 KB
testcase_35 AC 38 ms
6,944 KB
testcase_36 AC 83 ms
6,944 KB
testcase_37 AC 118 ms
6,940 KB
testcase_38 AC 196 ms
11,152 KB
testcase_39 AC 195 ms
27,660 KB
testcase_40 AC 67 ms
6,940 KB
testcase_41 AC 126 ms
10,776 KB
testcase_42 AC 139 ms
14,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
//#include<atcoder/all>
//using namespace atcoder;
using ll = long long int;
using ull = unsigned long long int;
using ld = long double;
constexpr ll MAX = 2000000000000000000;
constexpr ld PI = 3.14159265358979;
constexpr ll MOD = 998244353;//2024948111;
ld dotorad(ld K){ return PI * K / 180.0; }
ld radtodo(ld K){ return K * 180.0 / PI; }
mt19937 mt;
void randinit(){ srand((unsigned)time(NULL));mt = mt19937(rand()); }

int main(){
    ll N;
    cin >> N;
    vector<ll> A(N);
    for(ll i = 0; i < N; i++) cin >> A[i];
    sort(A.begin(),A.end());
    ll zero_cnt = 0;
    for(ll i = 0; i < N; i++){
        if(A[i] == 0) zero_cnt++;
    }
    if(zero_cnt >= N - 1){
        cout << "Yes" << endl;
        return 0;
    }
    ll mi = MAX,ma = -MAX;
    unordered_map<ll,ll> mp;
    for(ll i = 0; i < N; i++){
        if(A[i] != 0){
            mi = min(mi,A[i]);
            ma = max(ma,A[i]);
            mp[A[i]]++;
        }
    }
    if(ma == mi){
        cout << "Yes" << endl;
        return 0;
    }
    for(ll i = 0;i < N;i++){
        if((ma - mi) % (i + 1) != 0) continue;
        ll d = (ma - mi) / (i + 1);
        ll nokori = zero_cnt,used = 0;
        bool ok = 1;
        for(ll i = zero_cnt;i < N;i++){
            if(A[i] % d != mi % d){
                ok = 0;
                break;
            }
        }
        if(!ok) continue;
        for(ll x = mi;x <= ma;x += d){
            if(mp[x] == 0){
                nokori--;
            }
            else{
                used++;
            }
        }
        if(nokori >= 0 && used == N - zero_cnt){
            cout << "Yes" << endl;
            return 0;
        }
    }
    cout << "No" << endl;
}
0