일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 숙명여자대학교 정보보안 동아리
- The Loard of BOF
- 숙명여자대학교 정보보안동아리
- lob
- c++
- XSS Game
- C언어
- 기계학습
- CSS
- BOJ Python
- Javascript
- hackerrank
- WarGame
- 생활코딩
- hackctf
- 백준
- Python
- c
- Sookmyung Information Security Study
- BOJ
- SWEA
- PHP 웹페이지 만들기
- 풀이
- 머신러닝
- siss
- 웹페이지 만들기
- 드림핵
- HTML
- 파이썬
- 자료구조 복습
- Today
- Total
목록전체 글 (346)
혜랑's STORY
보호되어 있는 글입니다.
code #define _CRT_SECURE_NO_WARNINGS #include #include #include #include #include #include #include #include using namespace std; int n, m, v; int map[1001][1001]; bool flag[1001]; queue q; void dfs(int v) { flag[v] = true; cout x >> y; map[x][y] = map[y][x] = 1; } memset(flag, false, sizeof(flag)); dfs(v); cout
예제 풀이 문제 : 1 -1 4 3 8 -2 3 -3 꽃 : * 0 * * * * * 0 -> '*'가 꽃을 주는 날이다. -> 우울한 기간에도 꽃을 받을 수 있다. 단, 구간의 시작 바로 전날까지 꽃을 선물해야 그의 우울함을 덜어줄 수 있으므로 우울 기간에 받은 꽃은 다음 우울 기간부터 효력이 나타난다. code #define _CRT_SECURE_NO_WARNINGS #include #include #include #include #include #include #include using namespace std; int list[100001]; char check[100001]; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout...
code #define _CRT_SECURE_NO_WARNINGS #include #include #include #include #include #include #include using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int n, m, cnt; string num; bool flag; while (scanf("%d %d",&n,&m) == 2) { cnt = 0; for (int i = n; i
code #define _CRT_SECURE_NO_WARNINGS #include #include #include #include #include #include #include using namespace std; int n, result = 10000000; int nn[21][21]; bool check[21]; void dfs(int cnt, int pos) { if (cnt == n / 2) { int start, link; start = link = 0; for(int i=1; i n; for (int i = 1; i nn[i][j]; dfs(0, 1); cout
code #define _CRT_SECURE_NO_WARNINGS #include #include #include #include #include #include #include using namespace std; int dp[301]; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); memset(dp, 0, sizeof(dp)); int n; cin >> n; int* list = new int[n]; for (int i = 0; i > list[i]; dp[1] = list[0]; dp[2] = list[0] + list[1]; dp[3] = max(dp[1] + list[2], l..
Practice > Algorithm > Strings 문제 code char* funnyString(char* s) { char* r = malloc(sizeof(char)*strlen(s)); for(int i=0; i
Practice > Algorithm > Dynamic Programming 문제 code int cost(int B_count, int* B) { int dp[3][100001] = {0}; int max = 0; for(int i=1; i dp[2][i-1]) ? dp[1][i-1] : dp[2][i-1]); dp[1][i] = abs(B[i] - B[i-1]) + ((dp[1][i-1] > dp[2][i-1]) ? dp[1][i-1] : dp[2][i-1]); dp[2][i] = abs(B[i] - 1) + dp[0][i-1]; } for(int i=0; i