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
- 위젯킷
- 멋사
- widgetkit
- swift concurrency
- Swift
- TCA
- 스위프트
- widget
- cs
- 알고리즘
- 후기
- 네트워크
- uikit
- 스유
- 웹
- composable architecture
- c++
- 리액트
- 영남대
- 멋쟁이사자처럼
- 운영체제
- 컴퓨터그래픽스
- Protocol
- SwiftUI
- 문법
- dispatchqueue
- 백준
- 1일1알골
- spritekit
- 대외활동
Archives
- Today
- Total
맛동산이
백준7568 덩치(c++) 본문
https://www.acmicpc.net/problem/7568
부르스 포스 알고리즘으로
그냥 전체 순회를 하면 된다.
// 백준 7568 부르스포스 문제
#include <string>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
typedef struct student
{
int weight;
int height;
} student;
int main()
{
int num;
cin >> num;
vector<int> ranking(num, 1);
vector<student> students(num);
for (int a = 0; a < num; a++)
{
cin >> students[a].height;
cin >> students[a].weight;
}
for (int a = 0; a < num; a++)
{
for (int b = 0; b < num; b++)
{
if (students[a].height < students[b].height && students[a].weight < students[b].weight)
{
ranking[a] += 1;
}
}
}
for (int a = 0; a < ranking.size(); a++)
{
cout << ranking[a] << " ";
}
}
나는 그냥 구조체로 만들어서 비교했다.
반응형
'알고리즘 > 백준' 카테고리의 다른 글
(백준 1269) 대칭 차집합 (0) | 2022.06.29 |
---|---|
(백준 14425) 문자열 집합 (0) | 2022.06.27 |
(백준 10815) 숫자 카드 (0) | 2022.06.26 |
(백준 10814) 나이순 정렬 (0) | 2022.06.25 |
백준 1436 영화감독 숀 (0) | 2022.06.17 |