2021年度训练联盟热身训练赛第二场H-The Eternal Quest for Caffeine 题解

题目大意

在一个n层高的大楼,你最开始站在f层,每层楼都有一台机器,每台机器都有一些零件,并且有的机器会出售汽水。

你现在需要买一瓶汽水并回到起点,你可以在每层楼获得这一层楼机器有的零件,每个机器都必须拥有q个零件才能使用,问买到一瓶汽水最少的行动次数。

解题思路

其实这个题就是一个裸的dfs,题目数据好小。

我的dfs写的真的烂。。

本来比赛的时候是能写出来的。

思路很简单。

dfs爆搜,搜现在到哪一层,走了多少次。

每层判断一下就行。

完整代码

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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#include <bits/stdc++.h>
#include <iostream>
#include <cstdio>
#include <queue>
#include <deque>
#include <cstring>
#include <cmath>
#include <stack>
#include <map>
#include <set>
#include <list>
#include <string>
#include <vector>
#include <algorithm>
#include <sstream>
#include <unordered_map>
using namespace std;
#pragma GCC optimize(1)
#pragma GCC optimize(2)
#pragma GCC optimize(3)
#define rep(i,a,n) for (int i=a;i<=n;i++)
#define per(i,a,n) for (int i=a;i>=n;i--)
#define pb push_back
#define mp make_pair
#define fi first
#define se second
#define pll pair<ll,ll>
#define pii pair<int,int>
#define bg begin
#define rbg rbegin
#define ed end
#define endl '\n'
#define dbg(x) cout << #x << "===" << x << endl
typedef double db;
typedef long long ll;
typedef unsigned long long ull;

vector<int> v[20], num[20], need;
int check[20];
int flag[20];
int ans, n, f, p;

void dfs(int now, int cnt) {
if (cnt > 20 || now<1 || now>n) return;
int fl = 1;
for (auto x : num[now]) flag[x]++;
rep(i, 1, p) {
if (!flag[i]) {
fl = 0; break;
}
}
if (fl&&check[now]) ans = min(ans, cnt + abs(now - f));
dfs(now + 1, cnt + 1);
dfs(now - 1, cnt + 1);
for (auto x : num[now]) flag[x]--;
}

int main() {
ios::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
//freopen("D:\\测试用\\in.txt", "r", stdin);
//freopen("D:\\测试用\\out.txt", "w+", stdout);
int c = 1;
while (cin >> n >> f >> p && (n || f || p)) {
cout << "Test case #" << c++ << ": ";
rep(i, 1, n) {
num[i].clear();
check[i] = 0;
int m; cin >> m;
rep(j, 1, m) {
int x; cin >> x;
num[i].push_back(x);
}
char c; cin >> c;
if (c == 'Y') check[i] = 1;
}
ans = 1e9;
rep(i, 1, p) flag[i] = 0;
for (auto x : num[f]) flag[x] = 1;
dfs(f, 0);
if (ans != 1e9) cout << ans << endl;
else cout << "Impossible" << endl;
cout << endl;
}
return 0;
}
  • 版权声明: 本博客所有文章除特别声明外,著作权归作者所有。转载请注明出处!
  • © 2015-2021 sakurakarma
  • Powered by Hexo Theme Ayer
  • PV: UV:

请我喝杯咖啡吧~

支付宝
微信