#define _GLIBCXX_DEBUG #include using namespace std; #ifdef _DEBUG #include "dump.hpp" #else #define dump(...) #endif //#define int long long #define DBG 1 #define rep(i, a, b) for (int i = (a); i < (b); i++) #define rrep(i, a, b) for (int i = (b)-1; i >= (a); i--) #define loop(n) rep(loop, (0), (n)) #define all(c) begin(c), end(c) const int INF = sizeof(int) == sizeof(long long) ? 0x3f3f3f3f3f3f3f3fLL : 0x3f3f3f3f; const int MOD = (int)(1e9) + 7; const double PI = acos(-1); const double EPS = 1e-9; template bool chmax(T &a, const T &b) { if (a < b) { a = b; return true; } return false; } template bool chmin(T &a, const T &b) { if (a > b) { a = b; return true; } return false; } struct Edge { int from, to, cost, rev; Edge(int from, int to, int cost, int rev) : from(from), to(to), cost(cost), rev(rev) {} }; struct Graph { int V; vector> G; vector used; Graph(int V) : V(V) { used = vector(V, 0); G = vector>(V); } void add_edge(int from, int to, int cost = 1) { G[from].push_back(Edge(from, to, cost, G[to].size())); G[to].push_back(Edge(to, from, 0, G[from].size() - 1)); } int augment_path(int s, int t, int f) { if (s == t) return f; used[s] = true; rep(i, 0, G[s].size()) { Edge &e = G[s][i]; if (!used[e.to] && e.cost > 0) { int d = augment_path(e.to, t, min(f, e.cost)); if (d > 0) { e.cost -= d; G[e.to][e.rev].cost += d; return d; } } } return 0; } int max_flow(int s, int t) { int flow = 0; while (1) { used = vector(V, 0); int f = augment_path(s, t, INF); if (f == 0) break; flow += f; } return flow; } }; signed main() { cin.tie(0); ios::sync_with_stdio(false); int W, N; cin >> W >> N; vector J(N); rep(i, 0, N) { cin >> J[i]; } int M; cin >> M; vector C(M); rep(i, 0, M) { cin >> C[i]; } auto idx = [&](int x) { return x + N; }; Graph g(N + M + 2); int s = N + M, t = s + 1; rep(i, 0, N) { g.add_edge(s, i, J[i]); } rep(i, 0, M) { g.add_edge(idx(i), t, C[i]); } loop(M) { int Q; cin >> Q; set a; rep(i, 0, Q) { int x; cin >> x; x--; a.insert(x); } rep(i, 0, N) { if (a.count(i)) continue; g.add_edge(i, idx(loop), INF); } } int flow = g.max_flow(s, t); if (flow >= W) cout << "SHIROBAKO" << endl; else cout << "BANSAKUTSUKITA" << endl; return 0; }