結果

問題 No.1584 Stones around Circle Pond
ユーザー momoyuumomoyuu
提出日時 2024-08-08 00:01:56
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,906 bytes
コンパイル時間 1,196 ms
コンパイル使用メモリ 101,212 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-08-08 00:01:59
合計ジャッジ時間 3,044 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,948 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 1 ms
6,944 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2 ms
6,944 KB
testcase_31 AC 1 ms
6,940 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 1 ms
6,944 KB
testcase_34 AC 2 ms
6,944 KB
testcase_35 AC 2 ms
6,940 KB
testcase_36 AC 2 ms
6,948 KB
testcase_37 AC 2 ms
6,944 KB
testcase_38 AC 2 ms
6,940 KB
testcase_39 AC 2 ms
6,940 KB
testcase_40 AC 2 ms
6,940 KB
testcase_41 AC 2 ms
6,940 KB
testcase_42 AC 2 ms
6,944 KB
testcase_43 AC 2 ms
6,940 KB
testcase_44 AC 2 ms
6,940 KB
testcase_45 AC 2 ms
6,940 KB
testcase_46 AC 1 ms
6,940 KB
testcase_47 AC 2 ms
6,944 KB
testcase_48 AC 2 ms
6,940 KB
testcase_49 AC 2 ms
6,940 KB
testcase_50 AC 2 ms
6,940 KB
testcase_51 AC 2 ms
6,944 KB
testcase_52 AC 2 ms
6,940 KB
testcase_53 AC 1 ms
6,944 KB
testcase_54 AC 2 ms
6,944 KB
testcase_55 AC 2 ms
6,944 KB
testcase_56 AC 2 ms
6,944 KB
testcase_57 AC 2 ms
6,944 KB
testcase_58 AC 2 ms
6,944 KB
testcase_59 AC 2 ms
6,940 KB
testcase_60 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>

using namespace std;
using ll = long long;

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    ll n,l;
    cin>>n>>l;
    vector<ll> d(n);
    for(int i = 0;i<n;i++) cin>>d[i];
    vector<ll> b(2*n,0);
    for(int i = 0;i<2*n;i++) cin>>b[i];

    vector<ll> dif(2*n,0);

    auto get = [&](int i){
        if(i<n) return d[i];
        return l + d[i-n];
    };
    auto clen = [&](int i,int j) {
        ll now = abs(get(i) - get(j));
        now = min(now,2*l-now);
        return now;
    };

    for(int i = 0;i<2*n;i++){
        int k = i - 1;
        if(k<0) k = 2 * n - 1;
        ll len = clen(k,i);
        ll di = b[i] - b[k];
        if(di%len!=0){
            cout<<"No\n";
            return 0;
        }
        di /= len;

        int nk = i + 1;
        nk %= 2 * n;
        int nnk = i;
        ll len2 = clen(nnk,nk);
        ll di2 = b[nk] - b[nnk];
        if(di2%len2!=0){
            cout<<"No\n";
            return 0;
        }
        di2 /= len2;

        dif[i] = di2 - di;
        if(dif[i]%2!=0){
            cout<<"No\n";
            return 0;
        }
        dif[i] /= 2;
    }

    vector<ll> now(2*n,0);
    for(int i = 0;i<n;i++){
        if(dif[i]+dif[i+n]!=0){
            cout<<"No\n";
            return 0;
        }
    }

    auto go = [&](int i,ll use) {
        for(int j = 0;j<2*n;j++){
            ll len = clen(i,j);
            now[j] += len * use;
        }
    };
    for(int i = 0;i<n;i++){
        if(dif[i]>0){
            go(i,dif[i]);
        }else{
            go(i+n,-dif[i]);
        }
    }

    for(int i = 0;i<2*n;i++){
        now[i] = b[i] - now[i];
    }
    sort(now.begin(),now.end());
    now.erase(unique(now.begin(),now.end()),now.end());
    if(now.size()==1&&now[0]%l==0){
        cout<<"Yes\n";
        return 0;
    }
    cout<<"No\n";
    return 0;
}   

0