結果

問題 No.1884 Sequence
ユーザー hiikunZhiikunZ
提出日時 2024-07-14 08:09:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,730 bytes
コンパイル時間 2,720 ms
コンパイル使用メモリ 214,184 KB
実行使用メモリ 27,656 KB
最終ジャッジ日時 2024-07-14 08:10:06
合計ジャッジ時間 9,806 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 WA -
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 190 ms
14,236 KB
testcase_11 AC 194 ms
14,236 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 32 ms
6,944 KB
testcase_15 AC 106 ms
9,468 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 103 ms
9,752 KB
testcase_19 AC 83 ms
9,280 KB
testcase_20 AC 87 ms
7,972 KB
testcase_21 AC 68 ms
7,040 KB
testcase_22 AC 98 ms
9,508 KB
testcase_23 AC 170 ms
14,232 KB
testcase_24 AC 168 ms
14,232 KB
testcase_25 AC 157 ms
14,232 KB
testcase_26 AC 163 ms
14,364 KB
testcase_27 AC 36 ms
6,944 KB
testcase_28 AC 36 ms
6,940 KB
testcase_29 AC 36 ms
6,944 KB
testcase_30 AC 38 ms
6,940 KB
testcase_31 AC 85 ms
7,708 KB
testcase_32 AC 157 ms
14,236 KB
testcase_33 AC 124 ms
6,944 KB
testcase_34 AC 145 ms
6,940 KB
testcase_35 AC 42 ms
6,944 KB
testcase_36 AC 94 ms
6,944 KB
testcase_37 AC 126 ms
6,944 KB
testcase_38 AC 221 ms
11,032 KB
testcase_39 AC 263 ms
27,656 KB
testcase_40 AC 73 ms
6,940 KB
testcase_41 AC 132 ms
10,776 KB
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

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 - 2;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