N x N 크기의 농장이 격자 모양으로 구성되어 있으며, 각 격자 칸에는 농작물의 가치가 표시되어 있다. 이 농장에서는 특별히 중앙에서 시작하여 마름모 모양으로 농작물을 수확한다. 마름모 구역 내의 농작물 가치의 합을 구하는 문제
각 줄에서 중앙으로부터의 거리에 따라 수확 범위를 결정하고, 해당 범위 내의 값들을 더하여 문제를 풀었다.
마름모 형태의 수확 구역을 계산하는 것이 처음에는 복잡해 보였지만, 중앙으로부터의 거리 개념을 사용하니 조금 수월하게 풀 수 있었습니다.
import java.util.Scanner;
import java.io.FileInputStream;
class Solution
{
public static void main(String args[]) throws Exception
{
Scanner sc = new Scanner(System.in);
int T;
T=sc.nextInt();
for(int test_case = 1; test_case <= T; test_case++)
{
int N = sc.nextInt();
int[][] farm = new int[N][N];
int total = 0;
for (int i = 0; i < N; i++) {
String row = sc.next();
for (int j = 0; j < N; j++) {
farm[i][j] = row.charAt(j) - '0';
}
}
int center = N / 2;
for (int i = 0; i < N; i++) {
int distance = Math.abs(center - i);
for (int j = distance; j < N - distance; j++) {
total += farm[i][j];
}
}
System.out.println("#" + test_case + " " + total);
}
sc.close();
}
}
Java소개 자바에서 Set은 중복을 허용하지 않는 데이터 집합을 의미합니다. List와 달리 동일한 요소를 여러 번…
해시(Hash)란 무엇인가? 해시(Hash)는 자바 프로그래밍에서 빠르고 효율적인 데이터 저장 및 검색을 위한 핵심적인 개념입니다. 이…
LinkedList란 무엇인가? LinkedList는 자바에서 유용하게 사용되는 자료구조 중 하나로, 연결 리스트 방식을 이용하여 데이터를 관리하는…
ArrayList란 무엇인가? ArrayList는 자바에서 가장 널리 사용되는 컬렉션 중 하나로, 가변 크기의 배열을 구현한 클래스입니다.…
제네릭(Generic)이란? 자바 제네릭은 코드의 재사용성을 높이고 타입 안전성을 보장하는 중요한 개념입니다. 이 블로그 글에서는 자바…
View Comments
Howdy just wanted to give you a quick heads up. The words in your content seem to be running off the
screen in Firefox. I'm not sure if this is a format
issue or something to do with browser compatibility but I thought I'd post to let you know.
The style and design look great though! Hope you get the issue fixed soon. Thanks
Thank you for letting me know. I will look into it.
It’s the best time to make some plans for the long
run and it’s time to be happy. I’ve read this publish and if I may I want to suggest you few attention-grabbing
issues or tips. Perhaps you can write subsequent articles relating to
this article. I want to learn even more things about it!