Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Activity
- 경량 프로세스
- 동기 비동기
- Stack영역
- 방금 그 곡
- The DIning Philosopher Problem
- Non-Preemptive
- 프로세스
- 스레드
- Heap영역
- 커널 모드의 동기화
- Multi-level Queue
- 임계 구역
- 인터락 함수
- 프로세스 상태 전이도
- 프로세스 제어 블록
- 은행원 알고리즘
- 교착 상태
- 뮤텍스(Mutex)
- 유저 모드
- 문맥 교환
- The Banker's Algorithm
- 스레드 동기화
- 유저 모드의 동기화
- 모니터(Monitor)
- 블로킹 논블로킹
- Reentrant
- Process Control Block
- Light Weight Process
- 커널 모드
Archives
목록백준 10816 숫자카드2 (1)
Blog For Me
백준 10816 숫자 카드 2
문제 링크: https://www.acmicpc.net/problem/10816 입력 첫째 줄: 상근이가 가지고 있는 숫자 카드의 개수 N 둘째 줄: 각 숫자 카드에 적혀있는 정수(-10,000,000보다 크거나 같고 10,000,000보다 작거나 같음) 셋째 줄: 숫자 M (1 n; vector card(n); for(int i=0;i>card[i]; } sort(card.begin(), card.end()); cin>>m; for(int i=0;i>num; auto start = lower_bound(card.begin(), card.end(), num); auto end = upper_bound(card.begin(), card.end(), num); cout
알고리즘 문제/백준
2021. 10. 23. 12:44