結果
問題 | No.1023 Cyclic Tour |
ユーザー | 37zigen |
提出日時 | 2020-04-14 01:34:52 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 4,378 bytes |
コンパイル時間 | 2,259 ms |
コンパイル使用メモリ | 79,944 KB |
実行使用メモリ | 90,948 KB |
最終ジャッジ日時 | 2024-10-01 07:41:57 |
合計ジャッジ時間 | 18,116 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
38,000 KB |
testcase_01 | WA | - |
testcase_02 | AC | 44 ms
36,756 KB |
testcase_03 | WA | - |
testcase_04 | AC | 228 ms
60,004 KB |
testcase_05 | AC | 224 ms
60,924 KB |
testcase_06 | AC | 232 ms
62,076 KB |
testcase_07 | AC | 237 ms
61,376 KB |
testcase_08 | AC | 197 ms
56,920 KB |
testcase_09 | AC | 169 ms
55,244 KB |
testcase_10 | AC | 227 ms
60,708 KB |
testcase_11 | WA | - |
testcase_12 | AC | 219 ms
59,056 KB |
testcase_13 | AC | 238 ms
59,400 KB |
testcase_14 | AC | 232 ms
61,200 KB |
testcase_15 | AC | 222 ms
60,188 KB |
testcase_16 | AC | 261 ms
61,656 KB |
testcase_17 | AC | 260 ms
66,384 KB |
testcase_18 | AC | 272 ms
62,048 KB |
testcase_19 | AC | 253 ms
62,108 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 293 ms
68,088 KB |
testcase_25 | AC | 247 ms
61,776 KB |
testcase_26 | AC | 247 ms
61,632 KB |
testcase_27 | AC | 259 ms
61,460 KB |
testcase_28 | AC | 232 ms
60,864 KB |
testcase_29 | AC | 199 ms
56,268 KB |
testcase_30 | AC | 226 ms
60,588 KB |
testcase_31 | AC | 231 ms
60,804 KB |
testcase_32 | AC | 226 ms
59,492 KB |
testcase_33 | AC | 225 ms
61,112 KB |
testcase_34 | AC | 232 ms
60,664 KB |
testcase_35 | AC | 260 ms
62,332 KB |
testcase_36 | WA | - |
testcase_37 | AC | 228 ms
61,096 KB |
testcase_38 | AC | 291 ms
70,752 KB |
testcase_39 | WA | - |
testcase_40 | AC | 229 ms
60,956 KB |
testcase_41 | AC | 233 ms
61,272 KB |
testcase_42 | AC | 253 ms
62,652 KB |
testcase_43 | AC | 224 ms
59,844 KB |
testcase_44 | AC | 230 ms
60,516 KB |
testcase_45 | AC | 388 ms
75,936 KB |
testcase_46 | AC | 255 ms
81,548 KB |
testcase_47 | AC | 301 ms
90,948 KB |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | AC | 302 ms
71,328 KB |
testcase_52 | AC | 324 ms
70,616 KB |
ソースコード
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_uni(int cur,int par,ArrayList<Integer>[] g,int[] col) { col[cur]=1; for (int dst:g[cur]) { if (col[dst]==1) { System.out.println("Yes"); System.exit(0); } if (col[dst]==0) dfs_uni(dst,cur,g,col); } col[cur]=2; } void dfs_bi(int cur,int par,ArrayList<Integer>[] g,int[] col) { col[cur]=1; for (int dst:g[cur]) { if (dst==par) continue; if (col[dst]!=0) { System.out.println("Yes"); System.exit(0); } if (col[dst]==0) dfs_bi(dst,cur,g,col); } 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_bi(0,-1,g,col); } 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_uni(ds.root(0),-1,g2,col); for (int i=0;i<N;++i) { if (i==ds.root(i) && col[i]==0) dfs_uni(ds.root(i), -1, g2, col); } 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(); } }