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 | 31 |
Tags
- 영상 프레임 추출
- 알고리즘 목차
- 우분투
- 마우스 따라다니기
- 3344
- AI Hub
- 문자열 압축
- mysqld.sock
- 그리디알고리즘
- 토글 그룹
- 회의실 배정
- 자료구조 목차
- 2020 KAKAO BLIND RECRUITMENT
- 수 만들기
- 유니티
- 탄막 스킬 범위
- 걷는건귀찮아
- 탄막 이동
- 단어 수학
- 윈도우
- 백준
- MySQL
- 3273
- c#
- 원형
- 강의실2
- 18249
- 탄막
- SWEA
- 알고리즘
Archives
- Today
- Total
와이유스토리
[DFS 순열] 백준 17281 ⚾(야구) C++ 본문
https://www.acmicpc.net/problem/17281
#include <bits/stdc++.h>
using namespace std;
int n, ans, result[52][10], order[10];
bool visited[10];
int game() { // stl 큐 사용하면 시간 초과(큐 직접 구현)
int idx = 1, out = 0, score = 0;
for (int i = 1; i <= n; i++) {
out = 0; // 이닝마다 아웃 횟수 초기화
int front = 0; // 홈 위치(홈->3루->2루->1루)
int ground[3]; // 큐
memset(ground, 0, sizeof(ground)); // 3루, 2루, 1루 선수 번호 이닝마다 초기화
while (out < 3) {
if (idx % 10 == 0) idx = 1;
if (result[i][order[idx]] == 0) out++;
else {
for (int j = 0; j < result[i][order[idx]]; j++) {
if (ground[front] != 0) score++; // 3루 선수 들어옴
if (j == 0) ground[front] = order[idx]; // 해당 선수 1루로
else ground[front] = 0;
front++;
front %= 3;
}
}
idx++;
}
}
return score;
}
void dfs(int depth) { // 중복 없는 순열(순서 고정)
if (depth == 10) {
int val = game();
ans = max(ans, val);
return;
}
for (int i = 2; i < 10; i++) {
if (depth == 4) {
dfs(depth + 1);
break;
}
if (visited[i]) continue;
visited[i] = true;
order[depth] = i;
dfs(depth + 1);
visited[i] = false;
}
}
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0), cout.tie(0);
cin >> n;
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= 9; j++) {
cin >> result[i][j];
}
}
// 미리 4번 타자 지정
order[4] = 1;
visited[1] = true;
dfs(1);
cout << ans;
}
'코딩테스트 > 그래프|트리' 카테고리의 다른 글
[DFS 단순 반복] 프로그래머스 카카오프렌즈 컬러링북 C++ (0) | 2022.02.04 |
---|---|
[BFS 반복] 프로그래머스 거리두기 확인하기 C++ (0) | 2022.02.03 |
[DFS 순열/DFS 반복(조합, 순열)] 프로그래머스 불량 사용자 C++ (0) | 2022.02.02 |
[DFS 2번(단순, 백트래킹)] 백준 캐슬 디펜스 17135 C++ (0) | 2022.02.02 |
[DFS 중복순열] 백준 17070 파이프 옮기기1 C++ (0) | 2022.02.02 |
Comments