일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 검색엔진
- 백준
- Leveraging Slot Descriptions for Zero-Shot Cross-Domain Dialogue State Tracking
- 딥러닝기초
- From Machine Reading Comprehension to Dialogue State Tracking: Bridging the Gap
- Few Shot Dialogue State Tracking using Meta-learning
- 데이터 합성
- MySQL
- 다이나믹 프로그래밍
- 파이썬을 파이썬답게
- 정보처리기사 책 추천
- 정보처리기사전공자합격후기
- 정보처리기사 수제비
- DST fewshot learning
- classification text
- 프로그래머스
- 정보처리기사전공자
- DST zeroshot learning
- 모두의딥러닝
- 자연어처리 논문 리뷰
- Zero-shot transfer learning with synthesized data for multi-domain dialogue state tracking
- few shot dst
- How Much Knowledge Can You Pack Into the Parameters of a Language Model?
- Python
- 2020정보처리기사필기
- til
- nlp논문리뷰
- dialogue state tracking
- fasttext text classification 한글
- SUMBT:Slot-Utterance Matching for Universal and Scalable Belief Tracking
Archives
- Today
- Total
🌲자라나는청년
Q11650 좌표정렬하기(java) 본문
반응형
array를 이용. array.sort를 이용해서 정렬
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
class Q11650{
public static void main(String[] args){
Scanner scan = new Scanner(System.in);
int N = scan.nextInt();
int[][] arr = new int[N][2];
for(int i=0; i<N; i++){
arr[i][0] = scan.nextInt();
arr[i][1] = scan.nextInt();
}
public int compare(int[] x, int[] y){
if(x[0]>y[0])
return 1;
else if(x[0]<y[0])
return -1;
else{
if(x[1]>y[1])
return 1;
else if(x[1]<y[1])
return -1;
}
return 1;
}
});
for(int i=0; i<N; i++){
System.out.print(arr[i][0]);
System.out.print(" ");
System.out.println(arr[i][1]);
}
}
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs |
반응형
'알고리즘 문제풀이' 카테고리의 다른 글
[백준] Q10026 적록색약(java) (0) | 2019.09.26 |
---|---|
Q1463 1로 만들기(java) (0) | 2019.09.19 |
Q1181 단어 정렬(java) (0) | 2019.09.15 |
Q1427 소트인사이드(java) (0) | 2019.09.15 |
Q1026 보물(java) (0) | 2019.09.15 |