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 | 29 | 30 |
Tags
- 스위프트
- spritekit
- composable architecture
- uikit
- Swift
- widgetkit
- 문법
- widget
- 스유
- 후기
- 운영체제
- Protocol
- dispatchqueue
- 1일1알골
- c++
- cs
- 네트워크
- 백준
- TCA
- 영남대
- 대외활동
- 알고리즘
- 위젯킷
- 멋사
- SwiftUI
- 웹
- swift concurrency
- 멋쟁이사자처럼
- 리액트
- 컴퓨터그래픽스
Archives
- Today
- Total
목록7568 (1)
맛동산이
백준7568 덩치(c++)
https://www.acmicpc.net/problem/7568 7568번: 덩치 우리는 사람의 덩치를 키와 몸무게, 이 두 개의 값으로 표현하여 그 등수를 매겨보려고 한다. 어떤 사람의 몸무게가 x kg이고 키가 y cm라면 이 사람의 덩치는 (x, y)로 표시된다. 두 사람 A 와 B의 덩 www.acmicpc.net 부르스 포스 알고리즘으로 그냥 전체 순회를 하면 된다. // 백준 7568 부르스포스 문제 #include #include #include #include using namespace std; typedef struct student { int weight; int height; } student; int main() { int num; cin >> num; vector ranking..
알고리즘/백준
2022. 6. 15. 01:20