Submission #994280


Source Code Expand

import java.util.*;
import java.io.*;
import java.awt.geom.*;
import java.math.*;

public class Main {

	static final Reader in = new Reader();
	static final PrintWriter out = new PrintWriter(System.out,false);
	static boolean debug = false;

	static void solve(){
		int n = in.nextInt();
		int m = in.nextInt();

		DisjointSet ds = new DisjointSet(m);

		int[] used = new int[m];
		Arrays.fill(used, -1);

		for (int i=0; i<n; i++) {
			int k = in.nextInt();
			int pre = -1;
			for (int j=0; j<k; j++) {
				int l = in.nextInt() - 1;
				if (pre == -1) {
					if (used[l] >= 0) {
						ds.unite(used[l], l);
					}
					pre = l;
					used[l] = pre;
				} else {
					ds.unite(pre, l);
					used[l] = pre;
					pre = l;
				}
			}
		}

		int cnt = 0;
		for (int i=0; i<m; i++) {
			if (used[i] < 0) {
				cnt++;
			}
		}

		for (int i=0; i<m; i++) {
			if (ds.size(i) == m - cnt) {
				out.println("YES");
				return;
			}
		}

			out.println("NO");
	}

	public static void main(String[] args) throws Exception {
		debug = args.length > 0;
		long start = System.nanoTime();

		solve();
		out.flush();

		long end = System.nanoTime();
		dump((end - start) / 1000000 + " ms");
		in.close();
		out.close();
	}

	static void dump(Object... o) { if (debug) System.err.println(Arrays.deepToString(o)); }
}

class DisjointSet {

	private int[] par, cnt;

	public DisjointSet(int n){
		par = new int[n];
		cnt = new int[n];
		for (int i=0; i<n; i++) {
			par[i] = i;
			cnt[i] = 1;
		}
	}

	public int find(int x){
		return par[x] == x ? x : (par[x] = find(par[x]));
	}

	public boolean same(int x, int y){
		return find(x) == find(y);
	}

	public void unite(int x, int y){
		x = find(x); y = find(y);
		if (x == y) return;
		cnt[x] = cnt[y] = cnt[x] + cnt[y];
		par[x] = y;
	}

	public int size(int x) {
		return cnt[find(x)];
	}

	public String toString() {
		return Arrays.toString(par);
	}
}

class Reader {
	private final InputStream in;
	private final byte[] buf = new byte[1024];
	private int ptr = 0;
	private int buflen = 0;

	public Reader() { this(System.in);}
	public Reader(InputStream source) { this.in = source;}

	private boolean hasNextByte() {
		if (ptr < buflen) return true;
		ptr = 0;
		try{
			buflen = in.read(buf);
		}catch (IOException e) {e.printStackTrace();}
		if (buflen <= 0) return false;
		return true;
	}

	private int readByte() { if (hasNextByte()) return buf[ptr++]; else return -1;}

	private boolean isPrintableChar(int c) { return 33 <= c && c <= 126;}

	private void skip() { while(hasNextByte() && !isPrintableChar(buf[ptr])) ptr++;}

	public boolean hasNext() {skip(); 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();
		boolean minus = false;
		long num = readByte();

		if(num == '-'){
			num = 0;
			minus = true;
		}else if (num < '0' || '9' < num){
			throw new NumberFormatException();
		}else{
			num -= '0';
		}

		while(true){
			int b = readByte();
			if('0' <= b && b <= '9')
				num = num * 10 + (b - '0');
			else if(b == -1 || !isPrintableChar(b))
				return minus ? -num : num;
			else
				throw new NoSuchElementException();
		}
	}

	public int nextInt() {
		long num = nextLong();
		if (num < Integer.MIN_VALUE || Integer.MAX_VALUE < num)
			throw new NumberFormatException();
		return (int)num;
	}

	public double nextDouble() {
		return Double.parseDouble(next());
	}

	public char nextChar() {
		if (!hasNext()) throw new NoSuchElementException();
		return (char)readByte();
	}

	public String nextLine() {
		while (hasNextByte() && (buf[ptr] == '\n' || buf[ptr] == '\r')) ptr++;
		if (!hasNextByte()) throw new NoSuchElementException();

		StringBuilder sb = new StringBuilder();
		int b = readByte();
		while (b != '\n' && b != '\r' && b != -1) {
			sb.appendCodePoint(b);
			b = readByte();
		}

		return sb.toString();
	}

	public int[] nextIntArray(int n) {
		int[] res = new int[n];
		for (int i=0; i<n; i++) res[i] = nextInt();
		return res;
	}

	public char[] nextCharArray(int n) {
		char[] res = new char[n];
		for (int i=0; i<n; i++) res[i] = nextChar();
		return res;
	}

	public void close() {try{ in.close();}catch(IOException e){ e.printStackTrace();}};
}

Submission Info

Submission Time
Task C - Interpretation
User t8m8
Language Java8 (OpenJDK 1.8.0)
Score 400
Code Size 4644 Byte
Status AC
Exec Time 1174 ms
Memory 13736 KB

Judge Result

Set Name sample dataset1 dataset2
Score / Max Score 0 / 0 200 / 200 200 / 200
Status
AC × 2
AC × 12
AC × 25
Set Name Test Cases
sample sample-01.txt, sample-02.txt
dataset1 sample-01.txt, sample-02.txt, 01-01.txt, 01-02.txt, 01-03.txt, 01-04.txt, 01-05.txt, 01-06.txt, 01-07.txt, 01-08.txt, 01-09.txt, 01-10.txt
dataset2 sample-01.txt, sample-02.txt, 01-01.txt, 01-02.txt, 01-03.txt, 01-04.txt, 01-05.txt, 01-06.txt, 01-07.txt, 01-08.txt, 01-09.txt, 01-10.txt, 02-01.txt, 02-02.txt, 02-03.txt, 02-04.txt, 02-05.txt, 02-06.txt, 02-07.txt, 02-08.txt, 02-09.txt, 02-10.txt, 02-11.txt, 02-12.txt, 02-13.txt
Case Name Status Exec Time Memory
01-01.txt AC 95 ms 8272 KB
01-02.txt AC 1174 ms 8404 KB
01-03.txt AC 103 ms 8400 KB
01-04.txt AC 101 ms 8528 KB
01-05.txt AC 101 ms 8400 KB
01-06.txt AC 102 ms 8400 KB
01-07.txt AC 102 ms 8400 KB
01-08.txt AC 102 ms 8400 KB
01-09.txt AC 102 ms 8400 KB
01-10.txt AC 108 ms 8404 KB
02-01.txt AC 150 ms 10964 KB
02-02.txt AC 146 ms 10052 KB
02-03.txt AC 147 ms 10572 KB
02-04.txt AC 149 ms 11012 KB
02-05.txt AC 143 ms 10116 KB
02-06.txt AC 162 ms 10880 KB
02-07.txt AC 146 ms 10196 KB
02-08.txt AC 138 ms 9680 KB
02-09.txt AC 145 ms 10732 KB
02-10.txt AC 147 ms 13736 KB
02-11.txt AC 149 ms 13664 KB
02-12.txt AC 146 ms 10992 KB
02-13.txt AC 148 ms 11048 KB
sample-01.txt AC 97 ms 8404 KB
sample-02.txt AC 97 ms 8272 KB