結果

問題 No.1884 Sequence
ユーザー maguromaguro
提出日時 2022-03-25 21:29:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,612 bytes
コンパイル時間 2,106 ms
コンパイル使用メモリ 207,708 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-14 05:19:23
合計ジャッジ時間 6,657 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 1 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 WA -
testcase_10 AC 146 ms
6,816 KB
testcase_11 AC 146 ms
6,820 KB
testcase_12 AC 25 ms
6,820 KB
testcase_13 AC 27 ms
6,816 KB
testcase_14 AC 25 ms
6,816 KB
testcase_15 AC 85 ms
6,816 KB
testcase_16 AC 136 ms
6,816 KB
testcase_17 AC 58 ms
6,816 KB
testcase_18 AC 83 ms
6,816 KB
testcase_19 AC 67 ms
6,820 KB
testcase_20 AC 71 ms
6,820 KB
testcase_21 AC 54 ms
6,816 KB
testcase_22 AC 79 ms
6,816 KB
testcase_23 AC 137 ms
6,816 KB
testcase_24 AC 137 ms
6,816 KB
testcase_25 AC 130 ms
6,816 KB
testcase_26 AC 136 ms
6,816 KB
testcase_27 AC 31 ms
6,816 KB
testcase_28 AC 31 ms
6,816 KB
testcase_29 AC 30 ms
6,820 KB
testcase_30 AC 31 ms
6,816 KB
testcase_31 AC 70 ms
6,816 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 123 ms
6,816 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 110 ms
6,816 KB
testcase_42 AC 111 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
constexpr int Inf = 2000000000;
constexpr long long INF= 2000000000000000000;

template<typename T> inline bool chmax(T &a, T b) { if (a < b) { a = b; return true; } return false; }
template<typename T> inline bool chmin(T &a, T b) { if (a > b) { a = b; return true; } return false; }

template<typename T,typename U>
T modpow(T N, U P, T M = -1) {
    if(P < 0) return 0;
    T ret = 1;
    if(M != -1) ret %= M;
    while(P) {
        if(P & 1) {
            if(M == -1) ret *= N;
            else ret = ret * N % M;
        }
        P /= 2;
        if(M == -1) N *= N;
        else N = N * N % M;
    }
    return ret;
}

constexpr long long MOD = 998244353;

int main() {
    int n;
    cin >> n;
    vector<long long> vec;
    long long free_card = 0;
    for(int i = 0;i < n;i++) {
        long long a;
        cin >> a;
        if(a != 0) vec.push_back(a);
        else free_card++;
    }

    sort(vec.begin(),vec.end());
    if(free_card >= n - 1) {
        cout << "Yes" << endl;
        return 0;
    }

    long long min_gcd = vec[1] - vec[0];
    for(int i = 1;i < vec.size() - 1;i++) {
        min_gcd = gcd(min_gcd,vec[i + 1] - vec[i]);
    }

    if(min_gcd == 0) {
        if(all_of(vec.begin(),vec.end(),[&](int a){return a == vec[0];})) cout << "Yes" << endl;
        else cout << "No" << endl;
        return 0;
    }

    long long free_count = 0;
    for(int i = 0;i < vec.size() - 1;i++) {
        free_count += (vec[i + 1] - vec[i]) / min_gcd - 1;
    }

    if(free_count <= free_card) cout << "Yes" << endl;
    else cout << "No" << endl;
}
0