흔히 알고리즘 대회에서 구현 유형의 문제란 무엇을 의미할까요?
구현 유형의 예시는 다음과 같습니다.
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
// N을 입력받기
int n = sc.nextInt();
sc.nextLine(); // 버퍼 비우기
String[] plans = sc.nextLine().split(" ");
int x = 1, y = 1;
// L, R, U, D에 따른 이동 방향
int[] dx = {0, 0, -1, 1};
int[] dy = {-1, 1, 0, 0};
char[] moveTypes = {'L', 'R', 'U', 'D'};
// 이동 계획을 하나씩 확인
for (int i = 0; i < plans.length; i++) {
char plan = plans[i].charAt(0);
// 이동 후 좌표 구하기
int nx = -1, ny = -1;
for (int j = 0; j < 4; j++) {
if (plan == moveTypes[j]) {
nx = x + dx[j];
ny = y + dy[j];
}
}
// 공간을 벗어나는 경우 무시
if (nx < 1 || ny < 1 || nx > n || ny > n) continue;
// 이동 수행
x = nx;
y = ny;
}
System.out.println(x + " " + y);
}
}
charAt() 메서드를 사용하면 문자열(String)에서 특정 위치에 있는 문자(char)에 접근할 수 있으므로, 문자열을 문자 단위로 조작하고 처리할 수 있습니다.
완전 탐색: 가능한 경우의 수를 모두 검사해보는 탐색 방법을 의미
import java.util.*;
public class Main {
// 특정한 시각 안에 '3'이 포함되어 있는지의 여부
public static boolean check(int h, int m, int s) {
if (h % 10 == 3 || m / 10 == 3 || m % 10 == 3 || s / 10 == 3 || s % 10 == 3)
return true;
return false;
}
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
// H를 입력받기
int h = sc.nextInt();
int cnt = 0;
for (int i = 0; i <= h; i++) { // 시
for (int j = 0; j < 60; j++) { // 분
for (int k = 0; k < 60; k++) { // 초
// 매 시각 안에 '3'이 포함되어 있다면 카운트 증가
if (check(i, j, k)) cnt++;
}
}
}
System.out.println(cnt);
}
}
import java.util.Scanner;
public class 왕실의_나이트 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String inputData = sc.nextLine();
int[] dx = {-1, -2, -2, -1, 1, 2, 1, 2}; //행
int[] dy = {-2, -1, 1, 2, -2, -1, 2, 1}; //열
// char[] yeol = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h'};
//
// int y = 0;
// int x = Integer.parseInt(String.valueOf(index.charAt(1)));
// for(int i = 0; i < yeol.length; i++) {
// char charY = index.charAt(0);
// if(charY == yeol[i]) {
// y = i + 1;
// break;
// }
// }'
// 아스키코드로 간단하게 구현
int y = inputData.charAt(1) - '0'; // char자료형 숫자 to int
int x = inputData.charAt(0) - 'a' + 1; // char자료형 문자 to int
System.out.println(x + " " + y);
int count = 0;
for(int i = 0; i < 8; i++) {
int nx = x + dx[i];
int ny = y + dy[i];
if(nx >= 1 && nx <= 8 && ny >= 1 && ny <= 8) count++;
}
System.out.println(count);
}
}
import java.util.ArrayList;
import java.util.Collections;
import java.util.Scanner;
public class 문자열재정렬 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String inputData = sc.nextLine();
ArrayList<Character> list = new ArrayList<>();
int sum = 0;
for(int i = 0; i < inputData.length(); i++) {
char data = inputData.charAt(i);
if(Character.isDigit(data)) { // 숫자
sum += data - '0';
}
else {
list.add(data);
}
}
Collections.sort(list);
for(int i = 0; i < list.size(); i++) {
System.out.print(list.get(i));
}
if(sum != 0) System.out.println(sum);
}
}
import java.util.*;
public class Main {
public static String str;
public static ArrayList<Character> result = new ArrayList<Character>();
public static int value = 0;
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
str = sc.next();
// 문자를 하나씩 확인하며
for (int i = 0; i < str.length(); i++) {
// 알파벳인 경우 결과 리스트에 삽입
if (Character.isLetter(str.charAt(i))) {
result.add(str.charAt(i));
}
// 숫자는 따로 더하기
else {
value += str.charAt(i) - '0';
}
}
// 알파벳을 오름차순으로 정렬
Collections.sort(result);
// 알파벳을 차례대로 출력
for (int i = 0; i < result.size(); i++) {
System.out.print(result.get(i));
}
// 숫자가 하나라도 존재하는 경우 가장 뒤에 출력
if (value != 0) System.out.print(value);
System.out.println();
}
}