Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- spring boot
- 플로이드 와샬
- 게이트웨이
- 구현
- 비트마스킹
- 다익스트라
- 완전 탐색
- 백트래킹
- 유레카
- BFS
- 주울
- dp
- ZuulFilter
- Logback
- 서비스 디스커버리
- Gradle
- spring cloud
- docker-compose
- Zuul
- 달팽이
- 트리
- 도커
- 스프링 시큐리티
- 스택
- 구간 트리
- 이분 매칭
- 메모이제이션
- Java
- 이분 탐색
- Spring Cloud Config
Archives
- Today
- Total
Hello, Freakin world!
[백준 2446번] 별찍기 9 본문
https://www.acmicpc.net/problem/2446
공백이 아닌 각 행의 문자열의 처음(head)과 끝(tail)을 추척하면서 구현했습니다.
/*
백준 2446번 - 별 찍기9
https://www.acmicpc.net/problem/2446
*/
public class Main {
static int n;
static int length;
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
// BufferedReader br = new BufferedReader(new FileReader("testcase.txt"));
n = Integer.parseInt(br.readLine());
length = 2*n-1;
solve();
}
private static void solve() {
int head = 0; int tail = length-1;
StringBuilder sb = new StringBuilder();
while(head != tail) {
sb.append(getStarRow(head, tail));
head++; tail--;
}
while(!(head < 0 && tail > length-1)) {
sb.append(getStarRow(head, tail));
head--; tail++;
}
sb.deleteCharAt(sb.length()-1);
System.out.println(sb.toString());
}
// n이 주어질 때 2n-1 길이의 *로 이루어진 문자열 반환
private static String getStarRow(int head, int tail) {
StringBuilder sb = new StringBuilder();
for (int i = 0; i <= tail; i++) {
if(i >= head && i <= tail) {
sb.append("*");
continue;
}
sb.append(" ");
}
return sb.toString()+"\n";
}
}
'알고리즘 > PS' 카테고리의 다른 글
[백준 10816번] 숫자 카드 2 - Upper Bound, Lower Bound (0) | 2020.09.07 |
---|---|
[백준 2805번] 나무 자르기 (0) | 2020.09.06 |
[백준 11376번] 열혈강호2 (0) | 2020.09.03 |
[백준 11375번] 열혈 강호 (0) | 2020.09.03 |
[백준 2188번] 축사 배정 - 이분 매칭 고찰하기 (0) | 2020.09.03 |
Comments