結果

問題 No.74 貯金箱の退屈
ユーザー krotonkroton
提出日時 2014-11-21 01:04:14
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 1,177 bytes
コンパイル時間 559 ms
コンパイル使用メモリ 62,072 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-10 21:24:31
合計ジャッジ時間 1,480 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;

int root[111];
int find(int x){
    if(root[x] == x)return x;
    return root[x] = find(root[x]);
}
void meld(int x, int y){
    x = find(x);
    y = find(y);
    root[x] = y;
}

bool spec[111];
string solve(int N, vector<int> D, vector<int> W){
    for(int i=0;i<N;i++)root[i] = i;
    for(int i=0;i<N;i++){
        int L = (i - D[i] % N + N) % N;
        int R = (i + D[i]) % N;
        
        if(L == R){
            spec[L] = true;
        } else {
            meld(L, R);
        }
    }
    
    for(int i=0;i<N;i++){
        int cnt = 0;
        bool can = false;
        for(int j=0;j<N;j++){
            if(find(j) == i){
                if(W[j] == 0)++cnt;
                if(spec[j])can = true;
            }
        }
        if(cnt % 2 == 0 || can)continue;
        return "No";
    }
    
    return "Yes";
}

int main(){
    int N;
    cin >> N;
    
    vector<int> D(N), W(N);
    for(int i=0;i<N;i++){
        cin >> D[i];
    }
    for(int i=0;i<N;i++){
        cin >> W[i];
    }
    
    cout << solve(N, D, W) << endl;
    return 0;
}
0