일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 생활코딩
- Javascript
- BOJ Python
- 드림핵
- 자료구조 복습
- 파이썬
- XSS Game
- 머신러닝
- Python
- HTML
- PHP 웹페이지 만들기
- C언어
- 기계학습
- BOJ
- SWEA
- hackctf
- 숙명여자대학교 정보보안동아리
- siss
- CSS
- 백준
- Sookmyung Information Security Study
- lob
- 풀이
- c
- The Loard of BOF
- 웹페이지 만들기
- WarGame
- c++
- 숙명여자대학교 정보보안 동아리
- hackerrank
- Today
- Total
목록전체 글 (346)
혜랑's STORY
code #define _CRT_SECURE_NO_WARNINGS #include #include #include #include #include #include using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int a, b; cin >> a >> b; int x, y; x = y = 0; while (true) { if (a == 1) { y += b - 1; break; } else if (b == 1) { x += a - 1; break; } if (a > b) x += a / b, a %= b; else y += b / a, b %= a; } printf("%d %d"..
code #define _CRT_SECURE_NO_WARNINGS #include #include #include #include #include #include using namespace std; int dp[500][500] = { 0 }; int tree[500][500] = { 0 }; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int n; cin >> n; for (int i = 0; i tree[i][j]; dp[i][j] = tree[i][j]; } } for (int i = n - 2; i >= 0; i--) { for (int j = ..
code #define _CRT_SECURE_NO_WARNINGS #include #include #include #include #include #include using namespace std; int dp[2][100001] = { 0 }; int line[2][100001] = { 0 }; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int t; cin >> t; int n; for (int tc = 0; tc > n; for (int i = 0; i > line[0][i]; for (int i = 0; i > lin..
code #define _CRT_SECURE_NO_WARNINGS #include #include #include #include #include #include using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int t; cin >> t; int n, m, a, b; for (int tc = 0; tc > n >> m; for (int i = 0; i > a >> b; printf("%d\n", n - 1); } return 0; } 최소 비용 신장 트리(MST)를 아는지에 대한 문제인 것 같다. 국가의 수가 있고 이..
code #define _CRT_SECURE_NO_WARNINGS #include #include #include #include #include #include using namespace std; #define MAX 100001 int parent[MAX]; vector tree[MAX]; void search(int node) { for (int i = 0; i < tree[node].size(); i++) { if (parent[tree[node][i]] == 0) { parent[tree[node][i]] = node; search(tree[node][i]); } } } int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.ti..
code #define _CRT_SECURE_NO_WARNINGS #include #include #include #include #include #include using namespace std; typedef struct node { char left; char right; }; node tree[27]; void inorder(char data); void preorder(char data); void postorder(char data); int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int n; cin >> n; char root, left, right; for (int i = 0; i < n; i++..
# 문제 # 풀이 int* countingSort(int arr_count, int* arr, int* result_count) { int *temp = malloc(sizeof(int)*100); memset(temp, 0, sizeof(int)*100); for(int i=0; i