Submission #111877


Source Code Expand

// http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3381

import java.io.PrintWriter;
import java.util.Scanner;

public class Main {

	static int n, m, max;
	static int[] x, y;
	static boolean[] use;
	static boolean[][] friends;
	public static void main(String[] args) {
		doIt();
	}
	static void doIt() {
		Scanner sc = new Scanner(System.in);
		PrintWriter pw = new PrintWriter(System.out);
		x = new int[12];
		y = new int[12];
		use = new boolean[12];
		friends = new boolean[12][12];
		n = sc.nextInt();
		m = sc.nextInt();
		max = -1;
		for(int i = 0; i < m; i++){
			x[i] = sc.nextInt();
			y[i] = sc.nextInt();
			friends[x[i]-1][y[i]-1] = true;
			friends[y[i]-1][x[i]-1] = true;
		}
		System.out.println(rec(0));

	}

	static int rec(int pos){
		int ret = 0;
		if(pos == n){
			for(int i = 0; i < n; i++){
				if(use[i]){
					ret++;
					for(int j = i+1; j < n; j++){
						if(use[j]){
							if(!friends[i][j]) return -1;
						}
					}
				}
			}
			return ret;
		}
		else{
			use[pos] = false;
			ret = Math.max(rec(pos+1), ret);
			use[pos] = true;
			ret = Math.max(rec(pos+1), ret);
			use[pos] = false;
		}
		return ret;
	}

}

Submission Info

Submission Time
Task D - 派閥
User mkiken
Language Java (OpenJDK 1.7.0)
Score 0
Code Size 1217 Byte
Status RE
Exec Time 854 ms
Memory 23856 KB

Judge Result

Set Name all
Score / Max Score 0 / 100
Status
AC × 18
RE × 56
Set Name Test Cases
all 00_sample_01.txt, 00_sample_02.txt, 00_sample_03.txt, 00_sample_04.txt, test_01.txt, test_02.txt, test_03.txt, test_04.txt, test_05.txt, test_06.txt, test_07.txt, test_08.txt, test_09.txt, test_10.txt, test_11.txt, test_12.txt, test_13.txt, test_14.txt, test_15.txt, test_16.txt, test_17.txt, test_18.txt, test_19.txt, test_20.txt, test_21.txt, test_22.txt, test_23.txt, test_24.txt, test_25.txt, test_26.txt, test_27.txt, test_28.txt, test_29.txt, test_30.txt, test_31.txt, test_32.txt, test_33.txt, test_34.txt, test_35.txt, test_36.txt, test_37.txt, test_38.txt, test_39.txt, test_40.txt, test_41.txt, test_42.txt, test_43.txt, test_44.txt, test_45.txt, test_46.txt, test_47.txt, test_48.txt, test_49.txt, test_50.txt, test_51.txt, test_52.txt, test_53.txt, test_54.txt, test_55.txt, test_56.txt, test_57.txt, test_58.txt, test_59.txt, test_60.txt, test_61.txt, test_62.txt, test_63.txt, test_64.txt, test_65.txt, test_66.txt, test_67.txt, test_68.txt, test_69.txt, test_70.txt
Case Name Status Exec Time Memory
00_sample_01.txt AC 586 ms 23344 KB
00_sample_02.txt AC 573 ms 23344 KB
00_sample_03.txt AC 570 ms 23344 KB
00_sample_04.txt AC 551 ms 23736 KB
test_01.txt AC 568 ms 23292 KB
test_02.txt AC 581 ms 23216 KB
test_03.txt AC 559 ms 23220 KB
test_04.txt AC 449 ms 23344 KB
test_05.txt AC 555 ms 23220 KB
test_06.txt AC 558 ms 23216 KB
test_07.txt AC 562 ms 23220 KB
test_08.txt RE 510 ms 23340 KB
test_09.txt RE 494 ms 23344 KB
test_10.txt RE 488 ms 23344 KB
test_11.txt AC 473 ms 23220 KB
test_12.txt RE 470 ms 23220 KB
test_13.txt AC 565 ms 23224 KB
test_14.txt AC 567 ms 23224 KB
test_15.txt RE 477 ms 23220 KB
test_16.txt RE 473 ms 23348 KB
test_17.txt RE 484 ms 23328 KB
test_18.txt RE 472 ms 23188 KB
test_19.txt RE 476 ms 23220 KB
test_20.txt RE 474 ms 23312 KB
test_21.txt RE 480 ms 23216 KB
test_22.txt RE 463 ms 23340 KB
test_23.txt RE 488 ms 23348 KB
test_24.txt RE 480 ms 23340 KB
test_25.txt AC 522 ms 23220 KB
test_26.txt RE 494 ms 23336 KB
test_27.txt RE 475 ms 23212 KB
test_28.txt AC 478 ms 23216 KB
test_29.txt RE 475 ms 23340 KB
test_30.txt RE 472 ms 23344 KB
test_31.txt RE 509 ms 23216 KB
test_32.txt RE 480 ms 23348 KB
test_33.txt RE 578 ms 23348 KB
test_34.txt RE 564 ms 23344 KB
test_35.txt RE 470 ms 23220 KB
test_36.txt RE 542 ms 23316 KB
test_37.txt AC 483 ms 23856 KB
test_38.txt RE 479 ms 23344 KB
test_39.txt RE 485 ms 23308 KB
test_40.txt RE 540 ms 23348 KB
test_41.txt RE 566 ms 23220 KB
test_42.txt RE 560 ms 23344 KB
test_43.txt RE 530 ms 23340 KB
test_44.txt RE 502 ms 23224 KB
test_45.txt RE 473 ms 23348 KB
test_46.txt RE 470 ms 23316 KB
test_47.txt RE 571 ms 23348 KB
test_48.txt RE 478 ms 23348 KB
test_49.txt RE 500 ms 23220 KB
test_50.txt RE 590 ms 23184 KB
test_51.txt RE 561 ms 23348 KB
test_52.txt RE 504 ms 23220 KB
test_53.txt RE 478 ms 23208 KB
test_54.txt RE 467 ms 23348 KB
test_55.txt RE 477 ms 23352 KB
test_56.txt RE 475 ms 23320 KB
test_57.txt RE 481 ms 23316 KB
test_58.txt RE 496 ms 23348 KB
test_59.txt RE 589 ms 23352 KB
test_60.txt RE 564 ms 23340 KB
test_61.txt RE 533 ms 23204 KB
test_62.txt AC 500 ms 23216 KB
test_63.txt RE 481 ms 23340 KB
test_64.txt RE 473 ms 23340 KB
test_65.txt RE 480 ms 23312 KB
test_66.txt RE 478 ms 23216 KB
test_67.txt RE 554 ms 23340 KB
test_68.txt RE 548 ms 23296 KB
test_69.txt RE 854 ms 23348 KB
test_70.txt RE 803 ms 23220 KB