인프런 커뮤니티 질문&답변

지원님의 프로필 이미지

작성한 질문수

자바(Java) 알고리즘 문제풀이 입문: 코딩테스트 대비

3. 결혼식

코드 질문

작성

·

186

0

package 결혼식;

 

import java.util.*;

 

class Time implements Comparable<Time>{

public int s, e;

Time(int s, int e){

this.s = s;

this.e = e;

}

public int compareTo(Time o) {

return this.s - o.s;

}

}

 

public class Main {

public int solution(ArrayList<Time> arr, int n) {

int answer = 0;

int cnt = 0;

Collections.sort(arr);

for(int i=0; i<n; i++) {

Time tmp = arr.get(i); 

for(Time x : arr) {

if(x.s < tmp.s && tmp.s < x.e || tmp.e < x.e && x.s < tmp.e) {

cnt++;

}

}

answer = Math.max(cnt, answer);

cnt = 0;

}

return answer;

}

public static void main(String[] args) {

Main T = new Main();

Scanner scan = new Scanner(System.in);

int n = scan.nextInt();

ArrayList<Time> arr = new ArrayList<>();

for(int i=0; i<n; i++) {

int s = scan.nextInt();

int e = scan.nextInt();

arr.add(new Time(s,e));

}

System.out.print(T.solution(arr, n));

}

}

이중for문을 이용해서 코드를 짰는데 답은 맞게 나오는 거 같은데 검사 돌렸을때 오답으로 나오는데 어느 부분이 문제인지 궁금합니다!

답변 1

0

채점사이트 결과 들어가보시면 어디 틀렸는지 나옵니다

지원님의 프로필 이미지

작성한 질문수

질문하기