일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Stack
- 자료구조
- 브루트포스
- cs
- Operating System
- 구현
- 문제풀이
- 오퍼레이팅시스템
- 개발
- 컴공
- vector
- 그래프
- 코딩
- c++
- 정석학술정보관
- 정석
- 컴퓨터공학과
- 컴공과
- 오에스
- 너비우선탐색
- DP
- 스택
- 북리뷰
- OS
- 알고리즘
- bfs
- 백준
- Computer science
- 코테
- coding
- Today
- Total
목록분류 전체보기 (304)
Little Jay
간단한 입출력 문제 문제가 번역이 안되어 있어서 좀 그랬을 뿐! #include using namespace std; int main() { int num; cin >> num; int count = 0; if (num
백준 문제풀이를 통해 이런것도 있나 싶다 역시 불교국가..... #include #include #include #include using namespace std; int main() { int a; cin >> a; cout
string에서 length메소드 생각하 #include #include using namespace std; int main() { string input; cin >> input; int len = input.length(); cout
vector 기능 중 pair을 처음 써본 문제 pair만 제대로 이해했다면 조금은 쉬운 예제 #include #include #include #include #include using namespace std; int main() { vector inputList; const int INPUT_NUM = 8; int inputNumber; for (int i = 0; i > inputNumber; inputList.push_back(make_pair(inputNumber, i + 1)); } sort(inputList.begin(), inputList.end(), greater()); int sum = 0; vector index; for (int i = 0..