회원가입
로그인
Toggle navigation
문제
문제
전체 문제
문제 출처
단계별로 풀어보기
알고리즘 분류
추가된 문제
문제 순위
문제
푼 사람이 한 명인 문제
아무도 못 푼 문제
최근 제출된 문제
최근 풀린 문제
랜덤
출처
ICPC
Olympiad
한국정보올림피아드
한국정보올림피아드시․도지역본선
전국 대학생 프로그래밍 대회 동아리 연합
대학교 대회
카카오 코드 페스티벌
Coder's High
ICPC
Regionals
World Finals
Korea Regional
Africa and the Middle East Regionals
Europe Regionals
Latin America Regionals
North America Regionals
South Pacific Regionals
문제집
대회
채점 현황
랭킹
게시판
그룹
더 보기
재채점 기록
블로그
강의
실험실
도움말
BOJ Stack
BOJ Book
전체
공지
자유
질문
오타/오역/요청
게시판 공지
홍보
업데이트
solved.ac
글쓰기
질문 도움말
자주묻는 질문
이분그래프 시간초과 문의드립니다 ㅠㅠ
1707번 - 이분 그래프
amabile29
6년 전
0
왜이렇게 시간초과가 나는 것일까요? 문의드립니다
ㅠㅠ도와주세요...
import java.util.LinkedList; import java.util.Queue; import java.util.Scanner; public class Main { static boolean check(int x, int color[], int V, boolean map[][]){ Queue<Integer> q = new LinkedList<Integer>(); q.add(x); color[x]=1; while(!q.isEmpty()){ int now = q.poll(); for(int i=1 ;i<=V; i++){ if(map[now][i]){//연결 if(color[i]==0){ color[i] = -color[now]; q.add(i); }else{ if(color[i]==color[now]){ return false; } } } } } return true; } public static void main(String[] args) { Scanner sc = new Scanner(System.in); int K = sc.nextInt();//2<= <=5 for(int Test_Case=0; Test_Case<K; Test_Case++){ boolean map[][]; int color[]; int V = sc.nextInt(); //정점 개수 1~N int E = sc.nextInt(); //간선 개수 map = new boolean[V+1][V+1]; color = new int[V+1]; int x=0; for(int j=0; j<E; j++){ x = sc.nextInt(); int y = sc.nextInt(); map[x][y] = true;//연결 map[y][x] = true; }//input boolean result; result = check(x, color, V, map); //연결true, 비연결false for(int i=1; result && i<=V; i++) if(color[i]==0) result = check(i, color, V, map); if(result) System.out.println("YES"); else System.out.println("NO"); } } }
댓글을 작성하려면
로그인
해야 합니다.
amabile29 6년 전
왜이렇게 시간초과가 나는 것일까요? 문의드립니다
ㅠㅠ도와주세요...