소가 길을 건너간 이유 6 을 풀고,문제가 너무 재미있어서나도 소가 길을 건너간 이유를 연구해보려고 한다. 일명.. Cow R&D..... #. Series 1https://www.acmicpc.net/problem/14467* The copyright in this matter is in BOJ #. Solve Cow R&D 에 온 걸 환영하는 문제다. 먼저 소가 길을 건너는 것을 관찰하면서처음 확인하는 소라면 위치를 체크해두고이미 확인했던 소라면 길을 건넜는지 확인해주자. #. Code 1234567891011121314151617181920212223242526272829303132333435363738394041import java.io.BufferedReader;import java.io.IOE..
#. Problemhttps://www.acmicpc.net/problem/14466* The copyright in this matter is in BOJ #. Resolution Process 1. Read and understand problem 2. Redefine the problem + abstract 3. Create solution plan (select Algorithm, Data structure) 4. Prove the plan (check performance time and usage memory) 5. Carry out the plan 6. Look back on the plan and find a way to improve it #. Solve 처음에 문제를 잘못 이해하고 이상..
#. Problemhttps://www.acmicpc.net/problem/19952* The copyright in this matter is in BOJ #. Resolution Process 1. Read and understand problem 2. Redefine the problem + abstract 3. Create solution plan (select Algorithm, Data structure) 4. Prove the plan (check performance time and usage memory) 5. Carry out the plan 6. Look back on the plan and find a way to improve it #. Solve 범위는 2 ≤ H, W ≤ 100..
#. Problemhttps://www.acmicpc.net/problem/2174* The copyright in this matter is in BOJ #. Resolution Process 1. Read and understand problem 2. Redefine the problem + abstract 3. Create solution plan (select Algorithm, Data structure) 4. Prove the plan (check performance time and usage memory) 5. Carry out the plan 6. Look back on the plan and find a way to improve it #. Solve 이 문제는 좌표가 우리가 흔히 사용..
#. Problemhttps://www.acmicpc.net/problem/1197* The copyright in this matter is in BOJ #. Resolution Process 1. Read and understand problem 2. Redefine the problem + abstract 3. Create solution plan (select Algorithm, Data structure) 4. Prove the plan (check performance time and usage memory) 5. Carry out the plan 6. Look back on the plan and find a way to improve it #. Solve 그래프가 주어졌을 때, 그 그래프의..
#. Problemhttps://www.acmicpc.net/problem/4811* The copyright in this matter is in BOJ #. Resolution Process 1. Read and understand problem 2. Redefine the problem + abstract 3. Create solution plan (select Algorithm, Data structure) 4. Prove the plan (check performance time and usage memory) 5. Carry out the plan 6. Look back on the plan and find a way to improve it #. Solve 동작은 두 가지가 있다.병에서 약을..
#. Problemhttps://www.acmicpc.net/problem/2116* The copyright in this matter is in BOJ #. Resolution Process 1. Read and understand problem 2. Redefine the problem + abstract 3. Create solution plan (select Algorithm, Data structure) 4. Prove the plan (check performance time and usage memory) 5. Carry out the plan 6. Look back on the plan and find a way to improve it #. Solve 요리조리 돌려봐야하는 주사위 문제보..
#. Series 1https://www.acmicpc.net/problem/11053* The copyright in this matter is in BOJ #. Solve 나무위키에 LIS의 자세한 설명이 기록되어있다(링크) #. Code 12345678910111213141516171819202122232425262728293031323334353637383940414243import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;import java.util.StringTokenizer; public class BOJ11053 { public static void main(String[] args..