티스토리 뷰
SW Expert Academy :: SWEA :: 5644 :: 무선 충전
출처 : https://www.swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AWXRDL1aeugDFAUo
#include <iostream>
#include <vector>
#include <memory.h>
#include <algorithm>
using namespace std;
struct BC {
int x, y, c, p, n;
};
int M, N, ans;
int user[2][101];
int dir[5][2] = { {0,0},{0,-1},{1,0},{0,1},{-1,0} };
vector <vector<vector<pair<int, int>>>> map;
inline bool check(int x, int y, BC bc) { return bc.c >= ((abs(bc.x-x) + abs(bc.y-y))) ? true : false; }
inline bool compare(const pair<int, int>&a, const pair<int, int>&b) { return a.first > b.first; }
void bcinput(BC bc) {
for (int i = (bc.y - bc.c); i <= (bc.y + bc.c); i++) {
for (int j = (bc.x - bc.c); j <= (bc.x + bc.c); j++) {
if (i >= 1 && i <= 10 && j >= 1 && j <= 10 && check(j, i, bc)) {
map[i][j].push_back(make_pair(bc.p,bc.n));
}
}
}
}
void input() {
cin >> M >> N; ans = 0; map.assign(11, vector<vector<pair<int, int>>>(11));
BC bc;
for (int i = 0; i < 2; i++) {
for (int j = 1; j <= M; j++) {
cin >> user[i][j];
}
}
for (int i = 0; i < N; i++) {
cin >> bc.x >> bc.y >> bc.c >> bc.p; bc.n = i;
bcinput(bc);
}
for (int i = 1; i <= 10; i++) {
for (int j = 1; j <= 10; j++) {
if (map[i][j].size()>0) {
sort(map[i][j].begin(), map[i][j].end(), compare);
}
}
}
}
int main() {
int T; cin >> T;
for (int tc = 1; tc <= T; tc++) {
input();
int u1[2] = { 1,1 }; int u2[2] = { 10,10 };
for (int t = 0; t <= M; t++) {
u1[0] += dir[user[0][t]][0];u1[1] += dir[user[0][t]][1];
u2[0] += dir[user[1][t]][0];u2[1] += dir[user[1][t]][1];
if (u1[0] == u2[0] && u1[1] == u2[1]) {
if (map[u1[1]][u1[0]].size() > 0) {
if(map[u1[1]][u1[0]].size()>1)ans += (map[u1[1]][u1[0]][0].first + map[u1[1]][u1[0]][1].first);
else ans += map[u1[1]][u1[0]][0].first;
}
}
else if (map[u1[1]][u1[0]].size() > 0 && map[u2[1]][u2[0]].size() > 0) {
int tmp1, tmp2; bool c1[8], c2[8]; memset(c1, 0, sizeof(c1));memset(c2, 0, sizeof(c2));
tmp1 = map[u1[1]][u1[0]][0].first; c1[map[u1[1]][u1[0]][0].second] = true;
if (c1[map[u2[1]][u2[0]][0].second]) {
if (map[u2[1]][u2[0]].size() > 1) tmp1 += map[u2[1]][u2[0]][1].first;
}
else tmp1 += map[u2[1]][u2[0]][0].first;
tmp2 = map[u2[1]][u2[0]][0].first; c2[map[u2[1]][u2[0]][0].second] = true;
if (c2[map[u1[1]][u1[0]][0].second]) {
if (map[u1[1]][u1[0]].size() > 1) tmp2 += map[u1[1]][u1[0]][1].first;
}
else tmp2 += map[u1[1]][u1[0]][0].first;
ans += max(tmp1, tmp2);
}
else {
if (map[u1[1]][u1[0]].size() > 0) {
ans += map[u1[1]][u1[0]][0].first;
}
else if (map[u2[1]][u2[0]].size() > 0) {
ans += map[u2[1]][u2[0]][0].first;
}
}
}
cout << "#" << tc << " " << ans << endl;
}
return 0;
}
'알고리즘 > SWEA' 카테고리의 다른 글
[SWEA 5656] 벽돌 깨기 (0) | 2018.09.29 |
---|---|
[SWEA 5658] 보물상자 비밀번호 (0) | 2018.09.21 |
[SWEA 5648] 원자 소멸 시뮬레이션 (0) | 2018.09.20 |
[SWEA 5650] 핀볼 게임 (0) | 2018.09.19 |
[SWEA 5521] 상원이의 생일파티 (0) | 2018.09.07 |
- Total
- Today
- Yesterday
- string
- 이차원 배열과 연산
- 미세먼지 안녕!
- 새로운 게임 2
- SWEA
- 17140
- DP
- 2018 카카오 블라인드 채용
- DFS
- 역량 테스트
- 시간 복잡도
- hackerrank
- SW Expert Academy
- 트렌드
- STL
- 알고리즘
- 17779
- 17143
- 입출력
- 연구소 3
- 17144
- 2018 KAKAO BLIND RECRUITMENT
- 백준
- scanf
- 삼성
- 17142
- 팁
- 게리맨더링 2
- 17837
- boj
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |