結果

問題 No.177 制作進行の宮森あおいです!
ユーザー oshibori
提出日時 2018-01-30 19:08:27
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 2,614 bytes
コンパイル時間 2,642 ms
コンパイル使用メモリ 206,796 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-29 21:43:28
合計ジャッジ時間 3,645 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #
プレゼンテーションモードにする

#define _GLIBCXX_DEBUG
#include <bits/stdc++.h>
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 <class T> bool chmax(T &a, const T &b) {
if (a < b) {
a = b;
return true;
}
return false;
}
template <class T> 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<vector<Edge>> G;
vector<int> used;
Graph(int V) : V(V) {
used = vector<int>(V, 0);
G = vector<vector<Edge>>(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<int>(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<int> J(N);
rep(i, 0, N) { cin >> J[i]; }
int M;
cin >> M;
vector<int> 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<int> 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;
}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
0