Notice
Recent Posts
Recent Comments
Link
반응형
변명은 만개 결과는 한개
[백준 23253] 자료구조는 정말 최고야 (java) 본문
728x90
반응형
https://www.acmicpc.net/problem/23253
import java.io.*;
import java.util.*;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
// StringTokenizer st = new StringTokenizer(br.readLine(), " ");
String[] l = br.readLine().split(" ");
int totalBookCount = Integer.parseInt(l[0]);
int dummyCount = Integer.parseInt(l[1]);
boolean result = true;
for (int i = 0; i < dummyCount; i++) {
int c = Integer.parseInt(br.readLine());
String[] strs = br.readLine().split(" ");
int preVal = 200_001;
for (int j = 0; j < c; j++) {
if (Integer.parseInt(strs[j]) > preVal) {
result = false;
}
preVal = Integer.parseInt(strs[j]);
}
}
if (result) {
System.out.println("Yes");
} else {
System.out.println("No");
}
}
}
직관력을 기르자..
728x90
반응형
'공부 > Problem Solving' 카테고리의 다른 글
[백준 1051] 숫자 정사각형 (java) (0) | 2022.05.03 |
---|---|
[백준 2630] 색종이 만들기 (java) (0) | 2022.05.03 |
[백준 11866] 요세푸스 문제 0 (java) (0) | 2022.05.03 |
[백준 11650] 좌표 정렬하기 (java) (0) | 2022.05.03 |
[이분 탐색 01] (0) | 2020.07.01 |