일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Xilinx
- 정보처리기사
- boj
- 코딩테스트
- verilog HDL
- amba
- HDLBits
- hdl
- 백준
- Beakjoon
- UNIX
- Bus
- linux
- axi
- C++
- 정처기
- java
- Backjoon
- baekjoon
- SQL
- FPGA
- chip2chip
- verilog
- 자격증
- Vivado
- vitis
- AMBA BUS
- 리눅스
- Zynq
- 실기
- Today
- Total
목록baekjoon (38)
Hueestory
#include #include #include using namespace std;static vector A;static vector result;void merge(int s, int e);void partition(int s, int e);int main(){ ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int n; cin >> n; A.resize(n); result.resize(n); for (int i = 0; i > A[i]; partition(0, n - 1); for (int i = 0; i A[j]) result[k++] = A[j++]; e..
#include #include using namespace std;int main(){ ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int h, m; cin >> h >> m; if (m
#include #include using namespace std;int main(){ ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int n; cin >> n; if ((n % 4 == 0 && n % 100 != 0) || n % 400 == 0) cout
#include #include using namespace std;int main(){ ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int n; cin >> n; for (int i = 1; i
#include #include #include using namespace std;int main(){ ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int n, r; cin >> n; string str; for (int i = 0; i > r >> str; for (int j = 0; j 1. n번의 반복 테스트 케이스를 받음2. r번의 반복 횟수를 받고 str에 문자열 받음
#include #include #include using namespace std;int main(){ ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); string str; getline(cin, str); int ascii[26] = {0}; int max = 0; int index = 0; for (int i = 0; i 1. A~Z가 사용된 횟수를 저장하기 위해 ascii 코드 번호를 사용한 배열 ascii를 생성2. toupper를 사용해 string 내용을 모두 대문자로 바꾸어 준 후 ascii에 횟수 저장3. max값을 알아내기 위한 for문 실행4. 사용된 횟수가 동일한 알파벳이 있는 경우 "?"를 출력하기 위한 for문 실행5...
#include #include #include #include using namespace std;int main(){ ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int n; cin >> n; int sum = 0; vector A(n); for (int i = 0; i > A[i]; sort(A.begin(), A.end(), greater()); for (int i = 0; i 1. 각 사람이 돈을 인출하는데 필요한 시간의 합의 최솟값을 구하려면 시간이 적게 걸리는 순으로 나열=> 1번은 1번 대기시간, 2번은 (1번+2번)대기시간을 소요하므로, 가장 많이 겹치는 대기시간이 최소가 되어야 함2. 편의상 내림차순으로 정렬하고 accum..