일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 매개변수탐색
- softeer
- boj #19237 #어른 상어
- OFFSET
- 처우산정
- 이분탐색
- incr
- Kafka
- 기술면접
- 6987
- 경력
- 13908
- dfs
- 소프티어
- 오퍼레터
- msSQL
- 백트래킹
- 연결요소
- compose
- Docker
- BOJ
- BFS
- 처우협의
- 물채우기
- 백준
- @P0
- 성적평가
- upper_bound
- 파라메트릭
- 퇴사통보
- Today
- Total
목록전체 글 (629)
기술 블로그
https://www.acmicpc.net/problem/10158 팁 Tip 1234567891011121314151617181920212223242526272829303132333435363738394041#include using namespace std; int w, h, y, x, t; int main(){ cin.tie(0); // 나는 2차원 격차 공간을 시계 방향으로 한 번 90도 회전시켰다. scanf("%d %d %d %d %d", &w, &h, &y, &x, &t); swap(w, h); // 회전 int ww = (x + t) / w; // 가로 방향(ㅡ)으로 움직일 때, 경계에 닿는 횟수 int hh = (y + t) / h; // 세로 방향(ㅣ)으로 움직일 때, 경계에 닿는 횟수..
https://www.acmicpc.net/problem/11266 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384#include using namespace std; #define Max 100001#define INF 2e9 int dfn[Max], low[Max], V, E, number;vector v[Max], cut;bool cv[Max]; // x의 자식 노드가 x를 거치지지 않고, 도달할 수 있는 정점 중 가장 먼저 dfs 함수가 방문한 정점을 반환int ..
https://www.acmicpc.net/problem/11400 단절선의 핵심은 그림을 참고. 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364#include using namespace std; #define Max 100001#define INF 2e9 int dfn[Max], low[Max], par[Max], V, E, number;vector v[Max];vector bcc; // 정점 x와 x의 자식 노드들 중 x와 x의 부모인 parent로 직접 연결된 간선을 이용하지 않고,// 도달할 수 있는 정점 중 가장 먼저 dfs 함수..
https://bowbowbow.tistory.com/3
https://www.acmicpc.net/workbook/view/4380 Greedy탐욕복습그리디
https://www.acmicpc.net/problem/10805 dp cache 캐시 동적계획법 복습 냅색 메모이제이션 필수 코테 코딩 추천 비슷한 문제 : https://hsdevelopment.tistory.com/526 별로 이해는 안 되겠지만 그림 첨부. 왼쪽은 행으로 짜르는 것이다. i가 점점 증가하는 방향을 잘 보면서, h1, h2, w1, w2가 어떻게 변화되는지 살펴보자. 오른쪽은 열을 기준으로 짜르는 것이고, i의 방향을 잘 보자. 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576..
https://www.acmicpc.net/problem/10803 boj dp 메모이제이션 캐시 cache 복습 코데 코딩 한국정보올림피아드 r을 무조건 작게, c는 크게 설정하였다. 또한, 21 ~ 23번 째 줄이 핵심인 것 같다. 3을 2로 하면, 틀린다. 이유는 잘 모르겠다.. 시간 초과 및 SOF 코드1234567891011121314151617181920212223242526272829303132333435363738394041424344#include using namespace std; #define INF 2e9 int R, C, cache[101][10001]; int simulation(int r, int c){ if (r > c) return simulation(c, r); if (..
freopen : 읽기 ofstream : 쓰기 12345678910111213141516171819#include using namespace std; int main(){ cin.tie(0); // 읽기(바로 콘솔창으로 바로 입력하게 함) freopen("C:\\Users\\park7\\Desktop\\input.txt", "r", stdin); // 출력값들을 메모장에 쓸 때(파일명으로 생성) ofstream fout; fout.open("C:\\Users\\park7\\Desktop\\output.txt"); fout