Computer Science 136

[C++] BOJ 18235 지금 만나러 갑니다 (배열의 초기화 정리)

https://www.acmicpc.net/problem/18235[English Translation]On the way returning to their home country "Quack Quack Land" , Duck and Buck (Author's translation: duck is 'ori' in korean language, and the syllable 'o' means number 5, and this problem decided to call a different duck yuk-ri, which literally translates into 6-ri, since 'yuk' is 6 in korean. just a word pun, and I just decided to call ..

[Python] BOJ 2022 사다리

https://www.acmicpc.net/problem/2022 [English Translation available through pressing 한국어 button and checking English] 해당 문제는 Binary Search를 이용하여 오차 범위 이내에서 두 빌딩 사이의 거리를 구하는 문제이다.먼저, 해당 문제를 diagram으로 나타내보겠다.x,y,c의 값은 문제와 같게 고정된 값으로 정해진다.x_h란 x를 빗변으로 갖는 삼각형의 높이, y_h는 y를 빗변으로 갖는 삼각형의 높이로 정의하였다.mid는 두 삼각형의 공통 밑변으로 정의하였다.mid의 값이 커지면 빗변의 길이가 고정되어 있기 때문에, x_h와 y_h의 값이 작아진다.mid의 값이 작아지면, x_h와 y_h의 값이 커질..

[C++] BOJ 4969: 월요일-토요일

https://www.acmicpc.net/problem/4969 [English] -> Click on the [영어] button on the side #include #include #include #include using namespace std;int main(){ int nums[300001]={}; fill(nums,nums+300001,0); for (int i=2;i>n; if (n==1) return 0; vector answer={}; for (int i = 2; i  해당 문제는 에라토스테네스의 체의 변형을 이용하여 풀었다.먼저, 숫자의 최대 사이즈인 30만을 배열로 저장하여, 월요일-토요일 소수 여부를 파악하였다.월요일-토요..