Submission #3595109


Source Code Expand

#include <bits/stdc++.h>
#define rep(i, a, b) for(int i = int(a); i < int(b); i++)
#define rer(i, a, b) for(int i = int(a) - 1; i >= int(b); i--)

using namespace std;
typedef long long int ll;
const ll INF=1e11;
int par[100000]; //親
ll diff_weight[100000];
int height[100000];  //木の深さ

void init (int n){
    for (int i=0;i<n;i++){
        par[i]=i;
        height[i]=0;
        diff_weight[i]=0;
    }
}
int find (int x){
    if (par[x]==x){
        return x;
    }
    else{
        int f=find(par[x]);
        diff_weight[x]+=diff_weight[par[x]];
        return par[x] = f;
    }
}
ll weight(int x){
    find(x);
    return diff_weight[x];
}
bool unite (int x, int y,ll w){
    w+=weight(x);
    w-=weight(y);
    x=find(x);
    y=find(y);
    if (x==y) return false;
    if (height[x] < height[y]){
        swap(x,y);
        w=-w;
    }
    if (height[x]==height[y]) {
        height[x]++;
    }
        par[y]=x;
        diff_weight[y]=w;
        return true;
}

bool same (int x, int y){
    return find(x) == find(y);
}
ll diff(int x, int y){
    return weight(y)-weight(x);
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    int N,M;
    cin>>N>>M;
    if (M==0) cout <<"Yes"<<"\n";
    else {
        init (N);
        rep(i,0,M){
            int l,r,d;
            cin>>l>>r>>d;
            l--; r--;
            if (same(l,r)){
                if (diff(l,r)!=d){
                    cout << "No" <<"\n";
                    return 0;
                }
            }
            else {
                unite(l,r,d);
            }
        }
        cout <<"Yes"<<"\n";
    }
}

Submission Info

Submission Time
Task D - People on a Line
User yuki1997
Language C++14 (GCC 5.4.1)
Score 400
Code Size 1696 Byte
Status AC
Exec Time 55 ms
Memory 1792 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 400 / 400
Status
AC × 5
AC × 47
Set Name Test Cases
Sample sample01.txt, sample02.txt, sample03.txt, sample04.txt, sample05.txt
All 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, 11.txt, 12.txt, 13.txt, 14.txt, 15.txt, 16.txt, 17.txt, 18.txt, 19.txt, 20.txt, 21.txt, 22.txt, 23.txt, 24.txt, 25.txt, 26.txt, 27.txt, 28.txt, 29.txt, 30.txt, 31.txt, 32.txt, 33.txt, 34.txt, 35.txt, 36.txt, 37.txt, 38.txt, 39.txt, 40.txt, 41.txt, 42.txt, sample01.txt, sample02.txt, sample03.txt, sample04.txt, sample05.txt
Case Name Status Exec Time Memory
01.txt AC 3 ms 1792 KB
02.txt AC 53 ms 1792 KB
03.txt AC 13 ms 1792 KB
04.txt AC 55 ms 1792 KB
05.txt AC 15 ms 1792 KB
06.txt AC 41 ms 1792 KB
07.txt AC 16 ms 1792 KB
08.txt AC 39 ms 1792 KB
09.txt AC 35 ms 1792 KB
10.txt AC 34 ms 1792 KB
11.txt AC 27 ms 1792 KB
12.txt AC 17 ms 1792 KB
13.txt AC 45 ms 1792 KB
14.txt AC 36 ms 1792 KB
15.txt AC 19 ms 1792 KB
16.txt AC 37 ms 1792 KB
17.txt AC 51 ms 1792 KB
18.txt AC 47 ms 1792 KB
19.txt AC 39 ms 1792 KB
20.txt AC 39 ms 1792 KB
21.txt AC 22 ms 1792 KB
22.txt AC 25 ms 1792 KB
23.txt AC 19 ms 1792 KB
24.txt AC 24 ms 1792 KB
25.txt AC 51 ms 1792 KB
26.txt AC 50 ms 1792 KB
27.txt AC 30 ms 1792 KB
28.txt AC 39 ms 1792 KB
29.txt AC 30 ms 1792 KB
30.txt AC 37 ms 1792 KB
31.txt AC 30 ms 1792 KB
32.txt AC 37 ms 1792 KB
33.txt AC 33 ms 1792 KB
34.txt AC 20 ms 1792 KB
35.txt AC 30 ms 1792 KB
36.txt AC 26 ms 1792 KB
37.txt AC 30 ms 1792 KB
38.txt AC 28 ms 1792 KB
39.txt AC 30 ms 1792 KB
40.txt AC 29 ms 1792 KB
41.txt AC 1 ms 256 KB
42.txt AC 14 ms 1792 KB
sample01.txt AC 1 ms 256 KB
sample02.txt AC 1 ms 256 KB
sample03.txt AC 1 ms 256 KB
sample04.txt AC 1 ms 256 KB
sample05.txt AC 1 ms 256 KB