Home
Cho H.W.
Cancel

BOJ 1012 유기농 배추

유기농 배추 [실버2] 문제 링크 https://www.acmicpc.net/problem/1012 풀이 테스트 케이스 별 배추의 위치마다 dfs를 수행한 뒤, dfs 시작 횟수를 반환한다. #include<iostream> #include<stack> using namespace std; bool map[50][50...

BOJ 1005 ACM Craft

ACM Craft [골드3] 문제 링크 https://www.acmicpc.net/problem/1005 풀이 건물마다 선행되어야 하는 건설 순서를 위상정렬에 따라 시간을 계산하여 저장한 뒤, 정답 건물에 해당하는 건설 시간의 합을 출력한다. #include <iostream> #include <queue> #inclu...

BOJ 1003 피보나치 함수

피보나치 함수 [실버3] 문제 링크 https://www.acmicpc.net/problem/1003 풀이 N이 0,1에 대해 초기설정을 해준 뒤, 규칙성을 찾아 미리 구한 값들을 출력하면 된다. #include <iostream> using namespace std; int T, N; int dp[41][2]; int mai...

Writing

Enable Google Page Views

The content of this post applies only to Universal Analytics property (UA), not Google Analytics 4 (GA 4). In addition, since UA is about to be deprecated on Jul 1, 2023, the Page Views feature ...

Customize the Favicon

The favicons of Chirpy are placed in the directory assets/img/favicons/. You may want to replace them with your own. The following sections will guide you to create and replace the default favicons...

Writing a New Post

This tutorial will guide you how to write a post in the Chirpy template, and it’s worth reading even if you’ve used Jekyll before, as many features require specific variables to be set. Naming and...

Text and Typography

This post is to show Markdown syntax rendering on Chirpy, you can also use it as an example of writing. Now, let’s start looking at text and typography. Titles H1 - heading H2 - heading H3 - h...