結果

問題 No.1023 Cyclic Tour
ユーザー 37zigen37zigen
提出日時 2020-04-14 01:40:15
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 4,171 bytes
コンパイル時間 2,795 ms
コンパイル使用メモリ 80,076 KB
実行使用メモリ 107,472 KB
最終ジャッジ日時 2024-04-08 15:15:31
合計ジャッジ時間 24,888 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 53 ms
53,876 KB
testcase_02 AC 52 ms
53,972 KB
testcase_03 AC 52 ms
53,876 KB
testcase_04 AC 344 ms
80,784 KB
testcase_05 AC 353 ms
80,864 KB
testcase_06 AC 358 ms
82,668 KB
testcase_07 AC 359 ms
82,644 KB
testcase_08 AC 247 ms
70,612 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 329 ms
81,124 KB
testcase_12 AC 284 ms
73,356 KB
testcase_13 AC 276 ms
73,916 KB
testcase_14 WA -
testcase_15 AC 292 ms
74,200 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 432 ms
83,920 KB
testcase_21 AC 439 ms
85,340 KB
testcase_22 AC 456 ms
83,396 KB
testcase_23 AC 456 ms
83,168 KB
testcase_24 AC 423 ms
83,120 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 464 ms
83,476 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 466 ms
83,456 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 398 ms
83,424 KB
testcase_43 AC 262 ms
76,420 KB
testcase_44 WA -
testcase_45 AC 299 ms
90,380 KB
testcase_46 WA -
testcase_47 AC 366 ms
107,472 KB
testcase_48 AC 419 ms
85,940 KB
testcase_49 AC 414 ms
85,732 KB
testcase_50 AC 412 ms
85,920 KB
testcase_51 AC 398 ms
85,860 KB
testcase_52 AC 408 ms
86,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.NoSuchElementException;

class DJSet {
	int n;
	int[] upper;
	public DJSet(int n) {
		this.n=n;
		upper=new int[n];
		Arrays.fill(upper, -1);
	}
	int root(int x) {
		return upper[x]<0?x:(upper[x]=root(upper[x]));
	}
	boolean equiv(int x,int y) {
		return root(x)==root(y);
	}
	void setUnion(int x,int y) {
		x=root(x);y=root(y);
		if(x==y) return;
		if (upper[x]<upper[y]) {
			x^=y;y^=x;x^=y;
		}
		if (upper[x]==upper[y]) --upper[y];
		upper[x]=y;
	}
}

public class Main {
	
	void dfs(int cur,int par,ArrayList<Integer>[] g,int[] col,boolean uni) {
		col[cur]=1;
		for (int dst:g[cur]) {
			if (dst==par) continue;
			if ((!uni&&col[dst]!=0)&&(uni&&col[dst]==1)) {
				System.out.println("Yes");
				System.exit(0);
			}
			if (col[dst]==0) dfs(dst,cur,g,col,uni);
		}
		col[cur]=2;
	}
	
	void run() {
		FastScanner sc=new FastScanner();
		PrintWriter pw=new PrintWriter(System.out);
		
		int N=sc.nextInt();
		int M=sc.nextInt();
		ArrayList<Integer>[] g=new ArrayList[N];
		ArrayList<Integer>[] g2=new ArrayList[N];
		DJSet ds=new DJSet(N);
		int[] a=new int[M];
		int[] b=new int[M];
		int[] c=new int[M];
		for (int i=0;i<N;++i) g[i]=new ArrayList<>();
		for (int i=0;i<N;++i) g2[i]=new ArrayList<>();
		for (int i=0;i<M;++i) {
			a[i]=sc.nextInt();
			b[i]=sc.nextInt();
			c[i]=sc.nextInt();
			--a[i];--b[i];
			if (c[i]==1) { // bi
				g[a[i]].add(b[i]);
				g[b[i]].add(a[i]);
				ds.setUnion(a[i], b[i]);
			}
		}
		int[] col=new int[N];
		for (int i=0;i<N;++i) {
			if (col[i]==0) dfs(i,-1,g,col,false);
		}
		for (int i=0;i<M;++i) {
			if (c[i]==2) { // uni
				if (ds.equiv(a[i], b[i])) {
					System.out.println("Yes");
					return;
				}
				g2[ds.root(a[i])].add(ds.root(b[i]));
			}
		}
		Arrays.fill(col, 0);
		dfs(ds.root(0),-1,g2,col,true);
		for (int i=0;i<N;++i) {
			if (i==ds.root(i) && col[i]==0) dfs(ds.root(i), -1, g2, col,true);
		}
		
		pw.println("No");
		pw.close();
	}
	
	void tr(Object...objects) {System.out.println(Arrays.deepToString(objects));}
	
    public static void main(String[] args) {
    	new Main().run();
    }
}




class FastScanner {
    private final InputStream in = System.in;
    private final byte[] buffer = new byte[1024];
    private int ptr = 0;
    private int buflen = 0;
    private boolean hasNextByte() {
        if (ptr < buflen) {
            return true;
        }else{
            ptr = 0;
            try {
                buflen = in.read(buffer);
            } catch (IOException e) {
                e.printStackTrace();
            }
            if (buflen <= 0) {
                return false;
            }
        }
        return true;
    }
    private int readByte() { if (hasNextByte()) return buffer[ptr++]; else return -1;}
    private static boolean isPrintableChar(int c) { return 33 <= c && c <= 126;}
    private void skipUnprintable() { while(hasNextByte() && !isPrintableChar(buffer[ptr])) ptr++;}
    public boolean hasNext() { skipUnprintable(); return hasNextByte();}
    public String next() {
        if (!hasNext()) throw new NoSuchElementException();
        StringBuilder sb = new StringBuilder();
        int b = readByte();
        while(isPrintableChar(b)) {
            sb.appendCodePoint(b);
            b = readByte();
        }
        return sb.toString();
    }
    public long nextLong() {
        if (!hasNext()) throw new NoSuchElementException();
        long n = 0;
        boolean minus = false;
        int b = readByte();
        if (b == '-') {
            minus = true;
            b = readByte();
        }
        if (b < '0' || '9' < b) {
            throw new NumberFormatException();
        }
        while(true){
            if ('0' <= b && b <= '9') {
                n *= 10;
                n += b - '0';
            }else if(b == -1 || !isPrintableChar(b)){
                return minus ? -n : n;
            }else{
                throw new NumberFormatException();
            }
            b = readByte();
        }
    }
    public int nextInt() {
    	return (int)nextLong();
    }
}
0