QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#618392 | #5114. Cells Coloring | AmiyaCast | AC ✓ | 599ms | 8904kb | C++20 | 2.3kb | 2024-10-06 21:41:17 | 2024-10-06 21:41:19 |
Judging History
answer
#include<bits/stdc++.h>
#define ll long long
#define pii pair<int, int>
#define rin register int
const ll inf = 1145141919810;
using namespace std;
struct Dinic {
ll st, ed, n, m, cnt;
vector<ll> nxt{2, 0}, to{2, 0}, c{2, 0}, head, pre, cur, d;
Dinic(int _n, int _st, int _ed){//点数,边数,原点,会点
n = _n, st = _st, ed = _ed, cnt = 1;
head.resize(n + 10), pre.resize(n + 10), cur.resize(n + 10), d.resize(n + 10);
}
void Add(int x, int y, ll z) { nxt.push_back(head[x]), to.push_back(y), c.push_back(z), head[x] = ++cnt;};
void add(int x, int y, ll z) { Add(x, y, z), Add(y, x, 0);}
bool bfs() {
for(int i = 1; i <= n; ++i) d[i] = 0;
queue<ll> q;
q.push(st), d[st] = 1;
while(q.size()) {
int x = q.front();
q.pop();
for(int i = head[x]; i; i = nxt[i])
if(d[to[i]] == 0 && c[i]) {
d[to[i]] = d[x] + 1;
q.push(to[i]);
if(to[i] == ed) return 1;
}
}
return 0;
}
ll dfs(int x, ll mf) {
if(x == ed) return mf;
ll sum = 0;
for(int i = cur[x]; i; i = nxt[i]) {
cur[x] = i;
if(d[to[i]] == d[x] + 1 && c[i]) {
ll f = dfs(to[i], min(c[i], mf));
c[i] -= f, c[i ^ 1] += f;
sum += f, mf -= f;
if(mf == 0) break;
}
}
if(sum == 0) d[x] = 0;//剪枝
return sum;//这个就是这个点的ans
}
ll dinic() {
ll flow = 0;
while(bfs()) cur = head, flow += dfs(st, inf);
return flow;
}
};
void slv(){
ll n, m, C, D;
cin >> n >> m >> C >> D;
vector<string> s(n);
for(int i = 0; i < n; ++i) cin >> s[i];
ll ans = inf;
for(ll k = 0; k <= max(n, m); ++k){
ll a = 0;
Dinic d(m + n + 2, m + n + 1, m + n + 2);
for(int i = 1; i <= n; ++i) d.add(d.st, i, k);
for(int i = 1; i <= m; ++i) d.add(i + n, d.ed, k);
for(int i = 1; i <= n; ++i){
for(int j = 1; j <= m; ++j){
if(s[i - 1][j - 1] == '.') d.add(i, j + n, 1);
else a++;
}
}
ll _ans = d.dinic();
ll z = n * m - a - _ans;
ans = min(ans, C * k + D * z);
}
cout << ans << endl;
}
int main(){
ios::sync_with_stdio(0), cin.tie(0);
int _ = 1;
//cin >> _;
while(_--) slv();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3616kb
input:
3 4 2 1 .*** *..* **..
output:
4
result:
ok 1 number(s): "4"
Test #2:
score: 0
Accepted
time: 0ms
memory: 3652kb
input:
3 4 1 2 .*** *..* **..
output:
2
result:
ok 1 number(s): "2"
Test #3:
score: 0
Accepted
time: 261ms
memory: 5880kb
input:
250 250 965680874 9042302 ..**.*****..**..**.*****..***..***.**......*.***.*...***.*....*.**.*.**.*.*.****...*.******.***.************....**.*..*..***.*******.*.***.*..**..****.**.*.*..***.****..**.....***.....*.****...*...*.***..****..**.*.*******..*.*******.*.*.*.****.*.*** ....**.*******.*.******...
output:
109972100048
result:
ok 1 number(s): "109972100048"
Test #4:
score: 0
Accepted
time: 300ms
memory: 6288kb
input:
250 250 62722280 506434 *.**.***.*.*....*....*...**.*..**..****.*.*..*.*.*..*.....**..*.*.*.*****.*.**..*.**....***..*..*.*.*.**.*..*..*.**..*...**....**..*.*.***.*****.*****.***..**.***.****....*.*.**.**.*...****....*..*.**.**********.......********...***.**..*.....**.*..* .*..********..*...*..****...
output:
8437726048
result:
ok 1 number(s): "8437726048"
Test #5:
score: 0
Accepted
time: 543ms
memory: 8468kb
input:
250 250 85956327 344333 ..*.............*...*.....*...*..........*.........*...*.......*..***......*.*........*.*........*........*..*..*.............*.*........*....*..*................***...................*..*.............*..*.....*..**..............*..*......*.....*..** .........*......*.*.........
output:
18268031127
result:
ok 1 number(s): "18268031127"
Test #6:
score: 0
Accepted
time: 540ms
memory: 8412kb
input:
250 250 768323813 489146 ...*................*...........*.................*..***..*.......*..*......*.................*...*.........*.*.*.*...*.*.*.*.*.......*........*.............*...............*..*.............*.*...*.....................**.....**.....*.*........*...... ...................*.......
output:
25999088192
result:
ok 1 number(s): "25999088192"
Test #7:
score: 0
Accepted
time: 274ms
memory: 6016kb
input:
250 250 865365220 7248935 .....**.*.***...**.**...*.**.*****..****.**.**.*...*..**....*.**.*..**..*..*.****....***.***.*...*.*.*.**..****.***.*.**..*****.**..*.*.***..***.*..*.*..*......*.*******.*******.*..*.******.....**.***...*****...*...**....**.**.*...*...**.*.*****...*. *..*.**.*...****.*.**.*...
output:
97440874100
result:
ok 1 number(s): "97440874100"
Test #8:
score: 0
Accepted
time: 87ms
memory: 4480kb
input:
153 225 485767021 308782855 .*.**.***..***..***..****.*****.***.....*.***.****.*.*......**......****.****.**.******...**...*.***.*..**.*****.****....*.*.*...**..****.**.******....*....****....**.*.*****.**.**.**.***...*.**.*.**.****.*.*....*.*****...*** *.*....*...*.*..*.*****.***.***.***.***..*.***...
output:
54405906352
result:
ok 1 number(s): "54405906352"
Test #9:
score: 0
Accepted
time: 1ms
memory: 3652kb
input:
17 20 823772868 410753944 .....*......**...... .......*............ ...............*.... ......*............. ...................* *........*.*..*..... .....*.............* ..*..........*.*.... .......*............ ...**...........**.* .................... **......**.......*.. .*.............*.... ....
output:
16062438436
result:
ok 1 number(s): "16062438436"
Test #10:
score: 0
Accepted
time: 101ms
memory: 4292kb
input:
227 129 426009970 614728889 *..****..*..*.********.*.*..***.*.*..**..*.***.**.**.***..*.***..*..*.***.*.*.**..*****.**..***.*.****.**.***.****..**.**.*.**.** *...*****.**....****..*....*.*.**.*****.*..*****...*...**...******..****.*..**...***.*.*.*..*.*.*..*.******.*****..*.**********.* .*.*..**..**...
output:
49843166490
result:
ok 1 number(s): "49843166490"
Test #11:
score: 0
Accepted
time: 165ms
memory: 5684kb
input:
170 219 28214303 818736602 *..*....*..*..*....**.*...*..*.**....**.*..*........*.**.....*....*.*..*..*.**.....*..***......*.....*...*........**.*.*.***...*........**..**....***...**....*.*..........**....*....**.***....*.*.*..*..***.....*.*..***. .*.*.....**...*..*....*.*....*.*.**.........*...*..*....
output:
4514288480
result:
ok 1 number(s): "4514288480"
Test #12:
score: 0
Accepted
time: 0ms
memory: 3668kb
input:
221 2 186883458 764869506 *. .* ** .* ** ** *. .* .* .* *. .* .. ** ** *. .. .* .* ** ** *. .* *. .. *. ** .* ** .. ** .. ** .. .* *. ** .* .* ** .. .* ** ** ** ** .* .. .* .* .. ** .* ** .* ** .. ** *. ** .. .* *. .* ** .* ** .. .* ** .* ** ** .* ** ** .* ** ** .. .. .* ** .. ** .* *. *. *. *. *. *...
output:
17753928510
result:
ok 1 number(s): "17753928510"
Test #13:
score: 0
Accepted
time: 0ms
memory: 3856kb
input:
28 2 127093639 70848307 .* .* ** .. .. .* ** *. ** .. ** *. *. ** *. .. .* .* *. ** ** .* ** .. *. .* ** **
output:
1468878336
result:
ok 1 number(s): "1468878336"
Test #14:
score: 0
Accepted
time: 1ms
memory: 3584kb
input:
142 1 465099485 99077573 * . . * * * * * . * . * . * . . . . * * * * * . * . . * * * . * . . . . . * * * * * * * * . * . * . . * * . * * * * . . * * . * * * * * * * . . . * * * * * * . * . * . * * * * . . . * * . * . . * . * . . . * . . * . . . . * . * . * * * * * * * . * * * * . * . . . . * . * * ....
output:
5845576807
result:
ok 1 number(s): "5845576807"
Test #15:
score: 0
Accepted
time: 284ms
memory: 5592kb
input:
250 250 420456041 0 ...*****.....****......*.**..*..*.**.**...*.***..**.*......*.*.....**..*..**.*..***.*.****.*.**.*.....**..*.*.**....**..***......*...***..*...****.*****.*.***.**.*.*...****.***..*...*.*.**.***..*.***.*.****.*.*...**....***....*.*.**....***...*.***... *.**...**.**...*..*..*.*.*.**...
output:
0
result:
ok 1 number(s): "0"
Test #16:
score: 0
Accepted
time: 541ms
memory: 7880kb
input:
250 250 0 577876919 .............**.*.....*.....*.*..*.......*...*.................**........*........*....*...*.......*...*........................*.......*.....*.*.*.......*........................*...............*..*.*....*.*.*..................*..................... ...*...*...................*....
output:
0
result:
ok 1 number(s): "0"
Test #17:
score: 0
Accepted
time: 36ms
memory: 3680kb
input:
250 250 708109405 398540228 ********************************************************************************************************************************************************************************************************************************************************** *********************...
output:
0
result:
ok 1 number(s): "0"
Test #18:
score: 0
Accepted
time: 599ms
memory: 8904kb
input:
250 250 1000000000 1000000 .......................................................................................................................................................................................................................................................... .........................
output:
62500000000
result:
ok 1 number(s): "62500000000"
Test #19:
score: 0
Accepted
time: 564ms
memory: 8900kb
input:
250 250 1000000000 10000000 .......................................................................................................................................................................................................................................................... ........................
output:
250000000000
result:
ok 1 number(s): "250000000000"