QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#643260#5114. Cells ColoringOoAC ✓825ms10632kbC++202.3kb2024-10-15 20:10:532024-10-15 20:10:54

Judging History

你现在查看的是最新测评结果

  • [2024-10-15 20:10:54]
  • 评测
  • 测评结果:AC
  • 用时:825ms
  • 内存:10632kb
  • [2024-10-15 20:10:53]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
#define int long long
const int inf = 1e18;
const int N = 1100;
const int M = 5e5 + 10;
int n, m, s, t, c, d;
int len = 1;
int lin[N], dis[N], now[N], a[N];
struct edge {
	int next, y, flow;
	int Flow;
	bool tag;
}e[M << 1];
void add(int x, int y, int flow) {
	e[++len].next = lin[x];
	e[len].y = y;
	e[len].flow = flow;
	e[len].Flow = flow;
	lin[x] = len;
	
	e[++len].next = lin[y];
	e[len].y = x;
	e[len].flow = 0;
	e[len].tag = 1;
	lin[y] = len;
}
bool bfs() {
	memset(dis, 0, sizeof(dis));
	queue<int> q;
	q.push(s);
	dis[s] = 1;
	now[s] = lin[s];
	while(!q.empty()) {
		int x = q.front();
		q.pop();
		for(int i = lin[x]; i; i = e[i].next) {
			int y = e[i].y;
			if(e[i].flow && !dis[y]) {
				q.push(y);
				now[y] = lin[y];
				dis[y] = dis[x] + 1;
				if(y == t) return true;
			}
		}
	}
	return false;
}
int dinic(int x, int flow) {
	if(x == t) return flow;
	int k;
	int res = 0;
	for(int i = now[x]; i && flow; i = e[i].next) {
		now[x] = i;
		int y = e[i].y;
		if(e[i].flow && dis[y] == dis[x] + 1) {
			k = dinic(y, min(flow, e[i].flow));
			if(!k) dis[y] = 0;
			e[i].flow -= k;
			e[i ^ 1].flow += k;
			res += k;
			flow -= k; 
		}
	}
	return res;
}	
int maxflow() {
	int nowflow = 0, flow = 0;
	while(bfs())
		while(nowflow = dinic(s, inf)) flow += nowflow;
	return flow;	
}
string S[N];
signed main()
{
	ios::sync_with_stdio(0);
	cin.tie(0);
	cin >> n >> m >> c >> d;
	vector<vector<int>> id(n + 1, vector<int>(m + 1));
	for(int i = 1; i <= n; i++) {
		cin >> S[i];
		S[i] = '?' + S[i];
	}
	int tot = 0;
	int cnt = 0;
	for(int i = 1; i <= n; i++) 
		for(int j = 1; j <= m; j++) {
			if(S[i][j] == '.') cnt++;
			id[i][j] = ++tot;
		}
	s = n + m + 1, t = s + 1;
	
	for(int i = 1; i <= n; i++) 
		add(s, i, 0);
	for(int i = 1; i <= m; i++) 
		add(i + n, t, 0);
	for(int i = 1; i <= n; i++) {
		for(int j = 1; j <= m; j++) {
			if(S[i][j] == '*') continue;
			add(i, j + n, 1);
		}
	}
	long long ans = inf;
	int flow = 0;
	for(int k = 0; k <= max(n, m); k++) {
		flow += maxflow();
		assert(flow <= cnt);
		ans = min(ans, 1ll * c * k + 1ll * d * (cnt - flow));
		for(int i = 2; i <= 2 * (n + m); i += 2) e[i].flow++;
	}
	cout << ans << '\n';
	return 0;
}


详细

Test #1:

score: 100
Accepted
time: 1ms
memory: 3624kb

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: 218ms
memory: 8088kb

input:

250 250 965680874 9042302
..**.*****..**..**.*****..***..***.**......*.***.*...***.*....*.**.*.**.*.*.****...*.******.***.************....**.*..*..***.*******.*.***.*..**..****.**.*.*..***.****..**.....***.....*.****...*...*.***..****..**.*.*******..*.*******.*.*.*.****.*.***
....**.*******.*.******...

output:

109972100048

result:

ok 1 number(s): "109972100048"

Test #4:

score: 0
Accepted
time: 298ms
memory: 8328kb

input:

250 250 62722280 506434
*.**.***.*.*....*....*...**.*..**..****.*.*..*.*.*..*.....**..*.*.*.*****.*.**..*.**....***..*..*.*.*.**.*..*..*.**..*...**....**..*.*.***.*****.*****.***..**.***.****....*.*.**.**.*...****....*..*.**.**********.......********...***.**..*.....**.*..*
.*..********..*...*..****...

output:

8437726048

result:

ok 1 number(s): "8437726048"

Test #5:

score: 0
Accepted
time: 720ms
memory: 9924kb

input:

250 250 85956327 344333
..*.............*...*.....*...*..........*.........*...*.......*..***......*.*........*.*........*........*..*..*.............*.*........*....*..*................***...................*..*.............*..*.....*..**..............*..*......*.....*..**
.........*......*.*.........

output:

18268031127

result:

ok 1 number(s): "18268031127"

Test #6:

score: 0
Accepted
time: 761ms
memory: 9808kb

input:

250 250 768323813 489146
...*................*...........*.................*..***..*.......*..*......*.................*...*.........*.*.*.*...*.*.*.*.*.......*........*.............*...............*..*.............*.*...*.....................**.....**.....*.*........*......
...................*.......

output:

25999088192

result:

ok 1 number(s): "25999088192"

Test #7:

score: 0
Accepted
time: 197ms
memory: 6616kb

input:

250 250 865365220 7248935
.....**.*.***...**.**...*.**.*****..****.**.**.*...*..**....*.**.*..**..*..*.****....***.***.*...*.*.*.**..****.***.*.**..*****.**..*.*.***..***.*..*.*..*......*.*******.*******.*..*.******.....**.***...*****...*...**....**.**.*...*...**.*.*****...*.
*..*.**.*...****.*.**.*...

output:

97440874100

result:

ok 1 number(s): "97440874100"

Test #8:

score: 0
Accepted
time: 24ms
memory: 6452kb

input:

153 225 485767021 308782855
.*.**.***..***..***..****.*****.***.....*.***.****.*.*......**......****.****.**.******...**...*.***.*..**.*****.****....*.*.*...**..****.**.******....*....****....**.*.*****.**.**.**.***...*.**.*.**.****.*.*....*.*****...***
*.*....*...*.*..*.*****.***.***.***.***..*.***...

output:

54405906352

result:

ok 1 number(s): "54405906352"

Test #9:

score: 0
Accepted
time: 1ms
memory: 3740kb

input:

17 20 823772868 410753944
.....*......**......
.......*............
...............*....
......*.............
...................*
*........*.*..*.....
.....*.............*
..*..........*.*....
.......*............
...**...........**.*
....................
**......**.......*..
.*.............*....
....

output:

16062438436

result:

ok 1 number(s): "16062438436"

Test #10:

score: 0
Accepted
time: 41ms
memory: 6816kb

input:

227 129 426009970 614728889
*..****..*..*.********.*.*..***.*.*..**..*.***.**.**.***..*.***..*..*.***.*.*.**..*****.**..***.*.****.**.***.****..**.**.*.**.**
*...*****.**....****..*....*.*.**.*****.*..*****...*...**...******..****.*..**...***.*.*.*..*.*.*..*.******.*****..*.**********.*
.*.*..**..**...

output:

49843166490

result:

ok 1 number(s): "49843166490"

Test #11:

score: 0
Accepted
time: 75ms
memory: 6612kb

input:

170 219 28214303 818736602
*..*....*..*..*....**.*...*..*.**....**.*..*........*.**.....*....*.*..*..*.**.....*..***......*.....*...*........**.*.*.***...*........**..**....***...**....*.*..........**....*....**.***....*.*.*..*..***.....*.*..***.
.*.*.....**...*..*....*.*....*.*.**.........*...*..*....

output:

4514288480

result:

ok 1 number(s): "4514288480"

Test #12:

score: 0
Accepted
time: 1ms
memory: 3728kb

input:

221 2 186883458 764869506
*.
.*
**
.*
**
**
*.
.*
.*
.*
*.
.*
..
**
**
*.
..
.*
.*
**
**
*.
.*
*.
..
*.
**
.*
**
..
**
..
**
..
.*
*.
**
.*
.*
**
..
.*
**
**
**
**
.*
..
.*
.*
..
**
.*
**
.*
**
..
**
*.
**
..
.*
*.
.*
**
.*
**
..
.*
**
.*
**
**
.*
**
**
.*
**
**
..
..
.*
**
..
**
.*
*.
*.
*.
*.
*.
*...

output:

17753928510

result:

ok 1 number(s): "17753928510"

Test #13:

score: 0
Accepted
time: 0ms
memory: 3568kb

input:

28 2 127093639 70848307
.*
.*
**
..
..
.*
**
*.
**
..
**
*.
*.
**
*.
..
.*
.*
*.
**
**
.*
**
..
*.
.*
**
**

output:

1468878336

result:

ok 1 number(s): "1468878336"

Test #14:

score: 0
Accepted
time: 1ms
memory: 3640kb

input:

142 1 465099485 99077573
*
.
.
*
*
*
*
*
.
*
.
*
.
*
.
.
.
.
*
*
*
*
*
.
*
.
.
*
*
*
.
*
.
.
.
.
.
*
*
*
*
*
*
*
*
.
*
.
*
.
.
*
*
.
*
*
*
*
.
.
*
*
.
*
*
*
*
*
*
*
.
.
.
*
*
*
*
*
*
.
*
.
*
.
*
*
*
*
.
.
.
*
*
.
*
.
.
*
.
*
.
.
.
*
.
.
*
.
.
.
.
*
.
*
.
*
*
*
*
*
*
*
.
*
*
*
*
.
*
.
.
.
.
*
.
*
*
....

output:

5845576807

result:

ok 1 number(s): "5845576807"

Test #15:

score: 0
Accepted
time: 272ms
memory: 6820kb

input:

250 250 420456041 0
...*****.....****......*.**..*..*.**.**...*.***..**.*......*.*.....**..*..**.*..***.*.****.*.**.*.....**..*.*.**....**..***......*...***..*...****.*****.*.***.**.*.*...****.***..*...*.*.**.***..*.***.*.****.*.*...**....***....*.*.**....***...*.***...
*.**...**.**...*..*..*.*.*.**...

output:

0

result:

ok 1 number(s): "0"

Test #16:

score: 0
Accepted
time: 776ms
memory: 9520kb

input:

250 250 0 577876919
.............**.*.....*.....*.*..*.......*...*.................**........*........*....*...*.......*...*........................*.......*.....*.*.*.......*........................*...............*..*.*....*.*.*..................*.....................
...*...*...................*....

output:

0

result:

ok 1 number(s): "0"

Test #17:

score: 0
Accepted
time: 1ms
memory: 4292kb

input:

250 250 708109405 398540228
**********************************************************************************************************************************************************************************************************************************************************
*********************...

output:

0

result:

ok 1 number(s): "0"

Test #18:

score: 0
Accepted
time: 752ms
memory: 10632kb

input:

250 250 1000000000 1000000
..........................................................................................................................................................................................................................................................
.........................

output:

62500000000

result:

ok 1 number(s): "62500000000"

Test #19:

score: 0
Accepted
time: 825ms
memory: 9828kb

input:

250 250 1000000000 10000000
..........................................................................................................................................................................................................................................................
........................

output:

250000000000

result:

ok 1 number(s): "250000000000"