문제 풀이/기타 40

[백준] 1436 (영화감독 숌)

#1 알고리즘1번 if문과 2번 if문을 병렬로 두는 코드보다, 2번 if문을 1번 if문 안에 넣는 코드가 더 빠르다. 왜냐하면, contains666Count가 갱신되지 않았다면, targetCount와 비교한 결과 또한 갱신되지 않을 것이기 때문이다. contains666Count가 변해야, 2번 if문에 의미가 생긴다. #2 코드#2-1 자바import java.util.Scanner;public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int targetCount = sc.nextInt(); sc.close(); ..

[백준] 1018 (체스판 다시 칠하기)

#1 알고리즘#1-1 #1-20-based indexing 및 1-based indexing에 대한 개념 #1-3 #1-4 #2 코드#2-1 자바import java.util.Scanner;public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int yLength = sc.nextInt(); int xLength = sc.nextInt(); sc.nextLine(); // 입력 버퍼의 첫째 줄 비워내기 // 자르기 전 원본 판떼기 2차원 배열로 만들기 char[][] originalB..