結果
| 問題 | No.957 植林 |
| コンテスト | |
| ユーザー |
tarattata1
|
| 提出日時 | 2019-12-20 10:24:28 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 2,336 bytes |
| コンパイル時間 | 706 ms |
| コンパイル使用メモリ | 76,640 KB |
| 実行使用メモリ | 18,832 KB |
| 最終ジャッジ日時 | 2024-07-07 23:45:53 |
| 合計ジャッジ時間 | 5,138 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | TLE * 1 -- * 44 |
コンパイルメッセージ
main.cpp: In function ‘int main(int, char**)’:
main.cpp:72:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
72 | scanf("%d%d", &h, &w);
| ~~~~~^~~~~~~~~~~~~~~~
main.cpp:81:18: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
81 | scanf("%d", &p);
| ~~~~~^~~~~~~~~~
main.cpp:88:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
88 | scanf("%d", &a);
| ~~~~~^~~~~~~~~~
main.cpp:97:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
97 | scanf("%d", &a);
| ~~~~~^~~~~~~~~~
ソースコード
#include <stdio.h>
#include <string>
#include <cstring>
#include <stdlib.h>
#include <math.h>
#include <algorithm>
#include <vector>
#include <set>
#include <map>
#include <queue>
#include <stack>
#include <list>
#include <iterator>
#include <assert.h>
#pragma warning(disable:4996)
typedef long long ll;
#define MIN(a, b) ((a)>(b)? (b): (a))
#define MAX(a, b) ((a)<(b)? (b): (a))
#define LINF 9223300000000000000
#define INF 2140000000
const long long MOD = 1000000007;
//const long long MOD = 998244353;
using namespace std;
struct Edge{
int to, cap, rev;
Edge(int t, int c, int r):to(t), cap(c), rev(r) {}
};
void AddEdge(int fr, int to, int cap, vector<vector<Edge> >& gr)
{
gr[fr].push_back( Edge(to, cap, gr[to].size()) );
gr[to].push_back( Edge(fr, 0, gr[fr].size()-1) );
}
int dfs(int v, int G, int f, vector<vector<Edge> >& gr, vector<int>& used )
{
if(v==G) return f;
used[v]=1;
auto it = gr[v].begin();
for(; it!=gr[v].end(); ++it) {
if(!used[it->to] && it->cap>0) {
int d = dfs( it->to, G, MIN(f, it->cap), gr, used);
if(d>0) {
it->cap -= d;
gr[it->to][it->rev].cap += d;
return d;
}
}
}
return 0;
}
int max_flow( int S, int G, vector<vector<Edge> >& g)
{
int flow=0;
while(1) {
vector<int> used(g.size(), 0);
int f = dfs(S, G, INF, g, used);
if(f==0) break;
flow += f;
}
return flow;
}
int main(int argc, char* argv[])
{
int h,w;
scanf("%d%d", &h, &w);
ll sum=0;
int m=h+w+h*w;
vector<vector<Edge> > gr(m+2);
int i,j;
for(i=0; i<h; i++) {
for(j=0; j<w; j++) {
int p;
scanf("%d", &p);
//sum+=p;
AddEdge(i*w+j, m+1, p, gr);
}
}
for(i=0; i<h; i++) {
int a;
scanf("%d", &a);
sum+=a;
AddEdge( m, h*w+i, a, gr);
for(j=0; j<w; j++) {
AddEdge( h*w+i, i*w+j, INF, gr);
}
}
for(i=0; i<w; i++) {
int a;
scanf("%d", &a);
sum+=a;
AddEdge( m, h*w+h+i, a, gr);
for(j=0; j<h; j++) {
AddEdge( h*w+h+i, j*w+i, INF, gr);
}
}
int f = max_flow( m, m+1, gr);
printf("%lld\n", sum-f);
return 0;
}
tarattata1