結果
問題 | No.1479 Matrix Eraser |
ユーザー | hir355 |
提出日時 | 2021-04-16 21:56:02 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,921 bytes |
コンパイル時間 | 2,381 ms |
コンパイル使用メモリ | 215,904 KB |
実行使用メモリ | 33,296 KB |
最終ジャッジ日時 | 2024-07-03 01:37:51 |
合計ジャッジ時間 | 7,368 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | RE | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | AC | 50 ms
15,872 KB |
testcase_38 | WA | - |
testcase_39 | RE | - |
testcase_40 | AC | 12 ms
15,104 KB |
ソースコード
#include <atcoder/maxflow> #include <bits/stdc++.h> using namespace std; using namespace atcoder; const long long INF_LL = 2000000000000000000LL; const int INF = 2000000000; const long long MOD = 1000000007; #define ll long long #define all(x) x.begin(), x.end() #define REP(i, a, b) for(int i = a; i < b; i++) #define rep(i, n) REP(i, 0, n) // typedef float double; // typedef priority_queue prique; typedef pair<ll, ll> P; typedef vector<int> vi; typedef vector<vi> vvi; typedef vector<P> vp; typedef vector<ll> vl; typedef vector<vi> matrix; int dx[4] = {0, -1, 0, 1}; int dy[4] = {1, 0, -1, 0}; int sign[2] = {1, -1}; template <class T> bool chmax(T &a, T b) { if(a < b) { a = b; return 1; } return 0; } template <class T> bool chmin(T &a, T b) { if(a > b) { a = b; return 1; } return 0; } ll modpow(ll a, ll b, ll m) { if(b == 0) return 1; ll t = modpow(a, b / 2, m); if(b & 1) { return (t * t % m) * a % m; } else { return t * t % m; } } struct edge { int to; ll cost; edge(int t, ll c) { to = t, cost = c; } }; typedef vector<vector<edge>> graph; // using mint = modint998244353; int main(){ int h, w; cin >> h >> w; vector<vector<int>> a(h, vector<int>(w)); rep(i, h) rep(j, w) cin >> a[i][j]; vector<vector<pair<int, int>>> t(500000); rep(i, h){ rep(j, w){ if(a[i][j] > 0) t[a[i][j] - 1].push_back({i, j}); } } int ans = 0; for(int i = 499999; i >= 0; i--){ if(t[i].size() > 0) { mf_graph<int> g(h + w + 2); rep(j, t[i].size()){ g.add_edge(h + w, t[i][j].first, 1); g.add_edge(i + h, h + w + 1, 1); g.add_edge(t[i][j].first, t[i][j].second + h, 1); } ans += g.flow(h + w, h + w + 1); } } cout << ans << endl; }