Submission #3594948


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 t[100000];
int height[100000];  //木の深さ

void init (int n){
    for (int i=0;i<n;i++){
        par[i]=i;
        height[i]=0;
    }
}
int find (int x){
    if (par[x]==x){
        return x;
    }
    else{
        return par[x] = find(par[x]);
    }
}
void unite (int x, int y){
    x=find(x);
    y=find(y);
    if (x==y) return;
    
    if (height[x] < height[y]){
        par[x]=y;
    }
    else {
        par[y]=x;
        if (height[x]==height[y]) height[x]++;
    }
}
bool same (int x, int y){
    return find(x) == find(y);
}

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

Submission Info

Submission Time
Task D - People on a Line
User yuki1997
Language C++14 (GCC 5.4.1)
Score 0
Code Size 2116 Byte
Status TLE
Exec Time 2103 ms
Memory 1792 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 400
Status
AC × 5
AC × 8
TLE × 39
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 1075 ms 1792 KB
02.txt TLE 2103 ms 1792 KB
03.txt TLE 2103 ms 1792 KB
04.txt TLE 2103 ms 1792 KB
05.txt TLE 2103 ms 1792 KB
06.txt TLE 2103 ms 1792 KB
07.txt TLE 2103 ms 1792 KB
08.txt TLE 2103 ms 1792 KB
09.txt TLE 2103 ms 1792 KB
10.txt TLE 2103 ms 1792 KB
11.txt TLE 2103 ms 1792 KB
12.txt TLE 2103 ms 1792 KB
13.txt TLE 2103 ms 1792 KB
14.txt TLE 2103 ms 1792 KB
15.txt TLE 2103 ms 1792 KB
16.txt TLE 2103 ms 1792 KB
17.txt TLE 2103 ms 1792 KB
18.txt TLE 2103 ms 1792 KB
19.txt TLE 2103 ms 1792 KB
20.txt TLE 2103 ms 1792 KB
21.txt TLE 2103 ms 1792 KB
22.txt TLE 2103 ms 1792 KB
23.txt TLE 2103 ms 1792 KB
24.txt TLE 2103 ms 1792 KB
25.txt TLE 2103 ms 1792 KB
26.txt TLE 2103 ms 1792 KB
27.txt TLE 2103 ms 1792 KB
28.txt TLE 2103 ms 1792 KB
29.txt TLE 2103 ms 1792 KB
30.txt TLE 2103 ms 1792 KB
31.txt TLE 2103 ms 1792 KB
32.txt TLE 2103 ms 1792 KB
33.txt TLE 2103 ms 1792 KB
34.txt TLE 2103 ms 1792 KB
35.txt TLE 2103 ms 1792 KB
36.txt TLE 2103 ms 1792 KB
37.txt TLE 2103 ms 1792 KB
38.txt TLE 2103 ms 1792 KB
39.txt TLE 2103 ms 1792 KB
40.txt TLE 2103 ms 1792 KB
41.txt AC 1 ms 256 KB
42.txt AC 866 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