QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#188380 | #5489. Room Evacuation | triplem5ds# | AC ✓ | 879ms | 66688kb | C++23 | 4.7kb | 2023-09-25 19:36:05 | 2023-09-25 19:36:06 |
Judging History
answer
/// Msaa el 5ra
#pragma GCC optimize("O3")
#pragma GCC optimize ("unroll-loops")
#pragma GCC target("avx,avx2,fma")
#include "bits/stdc++.h"
using namespace std;
#define pb push_back
#define F first
#define S second
#define f(i, a, b) for(int i = a; i < b; i++)
#define all(a) a.begin(),a.end()
#define rall(a) a.rbegin(),a.rend()
#define sz(x) (int)(x).size()
#define mp(x, y) make_pair(x,y)
#define popCnt(x) (__builtin_popcountll(x))
#define int ll
using ll = long long;
using ii = pair<int, int>;
using ull = unsigned long long;
const int N = 5e5 + 5, LG = 18, MOD = 1e9 + 7;
const long double PI = acos(-1);
const long double EPS = 1e-7;
struct edge {
int from, to, cap, flow, index;
edge(int from, int to, int cap, int flow, int index) :
from(from), to(to), cap(cap), flow(flow), index(index) {}
};
struct PushRelabel {
int n;
vector<vector<edge> > g;
vector<long long> excess;
vector<int> height, active, count;
queue<int> Q;
PushRelabel(int n) :
n(n), g(n), excess(n), height(n), active(n), count(2 * n) {}
void addEdge(int from, int to, int cap) {
g[from].push_back(edge(from, to, cap, 0, g[to].size()));
if (from == to)
g[from].back().index++;
g[to].push_back(edge(to, from, 0, 0, g[from].size() - 1));
}
void enqueue(int v) {
if (!active[v] && excess[v] > 0) {
active[v] = true;
Q.push(v);
}
}
void push(edge &e) {
int amt = (int) min(excess[e.from], (long long) e.cap - e.flow);
if (height[e.from] <= height[e.to] || amt == 0)
return;
e.flow += amt;
g[e.to][e.index].flow -= amt;
excess[e.to] += amt;
excess[e.from] -= amt;
enqueue(e.to);
}
void relabel(int v) {
count[height[v]]--;
int d = 2 * n;
for (auto &it: g[v]) {
if (it.cap - it.flow > 0)
d = min(d, height[it.to] + 1);
}
height[v] = d;
count[height[v]]++;
enqueue(v);
}
void gap(int k) {
for (int v = 0; v < n; v++) {
if (height[v] < k)
continue;
count[height[v]]--;
height[v] = max(height[v], n + 1);
count[height[v]]++;
enqueue(v);
}
}
void discharge(int v) {
for (int i = 0; excess[v] > 0 && i < g[v].size(); i++)
push(g[v][i]);
if (excess[v] > 0) {
if (count[height[v]] == 1)
gap(height[v]);
else
relabel(v);
}
}
long long max_flow(int source, int dest) {
count[0] = n - 1;
count[n] = 1;
height[source] = n;
active[source] = active[dest] = 1;
for (auto &it: g[source]) {
excess[source] += it.cap;
push(it);
}
while (!Q.empty()) {
int v = Q.front();
Q.pop();
active[v] = false;
discharge(v);
}
long long max_flow = 0;
for (auto &e: g[source])
max_flow += e.flow;
return max_flow;
}
};
int n, m, t;
char grid[22][22];
const int dx[] = {-1, 1, 0, 0};
const int dy[] = {0, 0, -1, 1};
int getId(int i, int j, int t, bool o) {
int val = n * m * t;
val += i * m + j;
return val * 2 + o;
}
void doWork() {
cin >> n >> m >> t;
f(i, 0, n)f(j, 0, m) cin >> grid[i][j];
PushRelabel flw(n * m * (t + 1) * 2 + 2);
int src = n * m * (t + 1) * 2;
int snk = n * m * (t + 1) * 2 + 1;
f(i, 0, n)f(j, 0, m) if (grid[i][j] != '#') {
if (grid[i][j] == 'P')flw.addEdge(src, getId(i, j, 0, 0), 1);
if (grid[i][j] == 'E') {
f(x, 0, t + 1)flw.addEdge(getId(i, j, x, 1), snk, 1);
}
f(x, 0, t + 1)flw.addEdge(getId(i, j, x, 0), getId(i, j, x, 1), 1);
f(x, 0, t)flw.addEdge(getId(i, j, x, 1), getId(i, j, x + 1, 0), 1);
f(k, 0, 4) {
int ni = i + dx[k];
int nj = j + dy[k];
if (ni >= 0 && nj >= 0 && ni < n && nj < m && grid[ni][nj] != '#') {
f(x, 0, t) {
flw.addEdge(getId(i, j, x, 1), getId(ni, nj, x + 1, 0), 1);
}
}
}
}
cout << flw.max_flow(src, snk) << '\n';
}
int32_t main() {
#ifdef ONLINE_JUDGE
ios_base::sync_with_stdio(0);
cin.tie(0);
#endif // ONLINE_JUDGE
int t = 1;
// cin >> t;
while (t--) {
doWork();
}
}
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 3664kb
input:
4 5 3 ..... ..P#. ..PPE ..P.E
output:
4
result:
ok single line: '4'
Test #2:
score: 0
Accepted
time: 0ms
memory: 3644kb
input:
3 3 5 ... P#P P#E
output:
2
result:
ok single line: '2'
Test #3:
score: 0
Accepted
time: 6ms
memory: 12544kb
input:
20 15 53 PPEP..PP#P.#P.# P.###EP#PEPP.E# .PEEPEEP#E#PPE# PE#.##P#..PP.## E.PPP.#E##EPE## E#P#.EEE.EEPPPP P.#PPPE.PPPP#.P .##EEEE.#E.E.## P..P#PEPPEE#.PP EPEEEEE#E.E.E#P ##.E.EPP.PEE.EP ..E#.PE.#EP.#PE EEEEPP.E.#.EEP. ..E#PPE.#EPEP.. EPP.#.PP#P#P#PE EE#.PP.#EP.PPE# EEPP####P#.#E.# PP.EEE..###PEP. #EP...
output:
89
result:
ok single line: '89'
Test #4:
score: 0
Accepted
time: 0ms
memory: 3724kb
input:
4 1 137 . # # #
output:
0
result:
ok single line: '0'
Test #5:
score: 0
Accepted
time: 13ms
memory: 26392kb
input:
14 15 200 ###EPP...#P.E#. #.##EE#E#.PP#EP E.PPP.E.#.##PPP #E.EP##..#.#.## #P###EEE#E#.E.# #P..EPPE.#..EE. PP#P#E.#PP#.PEE .PEPEE#E#..EE## EE.PP.PE#EE#PEE P.#EPP.P#.EPP#P E..#P#PEPE#EP.# E.PP.EEP.#.#... PP.P#P#PEEEPPEE #.EE.P.P.P#E#PP
output:
55
result:
ok single line: '55'
Test #6:
score: 0
Accepted
time: 10ms
memory: 17532kb
input:
9 13 200 .P.E.PEPP.EE. .##E.EEE.P##. P##P.#..EP.PE E#EE...PEEP.E E#....PPP#PPP .#EPE.PPEP#PE #EEP...##P... #.P##EE#.E#.# #EPEP.E...P#P
output:
28
result:
ok single line: '28'
Test #7:
score: 0
Accepted
time: 0ms
memory: 5212kb
input:
8 13 28 #PEPP..#E##EE EEEPPEPPE...E ..##PP#P#..#P P...PP.PPE#PE EPPEE.PEEPEPP #EPE#PE#####. P.P#.#E.E...P ###EP##.EP.PP
output:
32
result:
ok single line: '32'
Test #8:
score: 0
Accepted
time: 15ms
memory: 30252kb
input:
13 20 200 P.E#E.P.#EP#P..#.#E. ..E...P.E#EP#.PE.P#P ##E#E#.P##P#PP#E#.EE .P#..#PP.E#E#E#E#PPP #P.EEP..EPEPPEE..E#E PPE###...EEPP#.#E.P. PP.#.##E#E##.P#.EPEE EE#PEPE.#P#.PP..EP.. #.EPE#P.P#EEPPP.P##. ####E###PE#E###EPP## #.EP#.#..#.#E#..#EPE E#EEPE#PP..EPE#P#P.E .#PPE#E.#.#EP#PEE#EP
output:
62
result:
ok single line: '62'
Test #9:
score: 0
Accepted
time: 3ms
memory: 11792kb
input:
14 5 200 ..EEP P.EE# P.### ##.P# #E.EP ...EE ..#.. PEPEE ##.PP .P..P PP#.. E.#EP E..P. EE.E.
output:
15
result:
ok single line: '15'
Test #10:
score: 0
Accepted
time: 1ms
memory: 3816kb
input:
2 1 167 P P
output:
0
result:
ok single line: '0'
Test #11:
score: 0
Accepted
time: 3ms
memory: 17872kb
input:
6 20 199 .PE.E...P.EE...PE.## P.EPP.#EE#E.PP.P.#.E E#E#E#EEP.P.E##P.E## EEP#PPE#EE..##PPPP.# .PE#EP.PE#EE.P.E#EE# E#P.EEPP..P..EE#E#.P
output:
28
result:
ok single line: '28'
Test #12:
score: 0
Accepted
time: 7ms
memory: 13900kb
input:
7 14 200 #PE##..E#EPEP. ###PEPE.P##PPP #E.#P#PE###.PP .E#E.#EEE#PP.P P..EEEE#.E#P.. #.E.P.PEPEPP#. #E#EEPE.E##...
output:
24
result:
ok single line: '24'
Test #13:
score: 0
Accepted
time: 8ms
memory: 19108kb
input:
8 19 200 .#..#P#.P.P#.E.E..P #P.P##..P.PPE.EEP.E #.##P.#E.P##P....E. ##EPEE#.EPP.#.#EE.# #.#EPP#EE.PP#E#E.## PPPPE.EEP#EPEE..PPP #P###PPP#EP..E#P### #.##EPPE.#.PE#E.##P
output:
35
result:
ok single line: '35'
Test #14:
score: 0
Accepted
time: 8ms
memory: 13008kb
input:
6 15 200 ##.#P.E#.PE.P.E PEE...#E#EE..#P P.#.E#EP..#E... .EE#P#E.P.PEP#P P###.EE#P##.EEE .PE.E.P.PP.###.
output:
18
result:
ok single line: '18'
Test #15:
score: 0
Accepted
time: 2ms
memory: 5204kb
input:
2 12 200 #P.E.#...P#E E.##..#.P#..
output:
1
result:
ok single line: '1'
Test #16:
score: 0
Accepted
time: 1ms
memory: 3956kb
input:
12 1 108 # # E P # . P # E # # .
output:
1
result:
ok single line: '1'
Test #17:
score: 0
Accepted
time: 3ms
memory: 22640kb
input:
17 15 126 #.##.EEPEP#EE.E #P.#PPEP.P.#E#P .P##E.##E.E##PE P#EPPE.E#.#EPE# .EEEE.P#E.P...# P.PEPPEEEE.PE#. .#E..#...PPPPEP ##.EE.PE.PPPPE. P..P#PEP....P#E P.#...P...EPEE. #EE#.EPP#PEE.## .#.##.P#PEE###E #.#..#..EE.E#.P .#.#E.PPEEE...P PPPP##.E.PPEEPP EE.EE.EP.PEPPP. EP#P.P.P.#.P.P.
output:
67
result:
ok single line: '67'
Test #18:
score: 0
Accepted
time: 522ms
memory: 66688kb
input:
20 20 200 PPPPPPPPPPPPPPPPPPPP PPPPPPPPPPPPPPPPPPPP PPPPPPPPPPPPPPPPPPPP PPPPPPPPPPPPPPPPPPPP PPPPPPPPPPPPPPPPPPPP PPPPPPPPPPPPPPPPPPPP PPPPPPPPPPPPPPPPPPPP PPPPPPPPPPPPPPPPPPPP PPPPPPPPPPPPPPPPPPPP PPPPPPPPPPPPPPPPPPPP PPPPPPPPPPPPPPPPPPPP PPPPPPPPPPPPPPPPPPPP PPPPPPPPPPPPPPPPPPPP PPPPPPPPPPPPPPPPP...
output:
200
result:
ok single line: '200'
Test #19:
score: 0
Accepted
time: 87ms
memory: 66148kb
input:
20 20 200 E#PPPPPPPPPPPPPPPPPP ##PPPPPPPPPPPPPPPPPP PPPPPPPPPPPPPPPPPPPP PPPPPPPPPPPPPPPPPPPP PPPPPPPPPPPPPPPPPPPP PPPPPPPPPPPPPPPPPPPP PPPPPPPPPPPPPPPPPPPP PPPPPPPPPPPPPPPPPPPP PPPPPPPPPPPPPPPPPPPP PPPPPPPPPPPPPPPPPPPP PPPPPPPPPPPPPPPPPPPP PPPPPPPPPPPPPPPPPPPP PPPPPPPPPPPPPPPPPPPP PPPPPPPPPPPPPPPPP...
output:
0
result:
ok single line: '0'
Test #20:
score: 0
Accepted
time: 11ms
memory: 15240kb
input:
20 20 38 E................... .................... .................... .................... .................... .................... .................... .................... .................... .................... .................... .................... .................... .....................
output:
1
result:
ok single line: '1'
Test #21:
score: 0
Accepted
time: 7ms
memory: 15008kb
input:
20 20 37 E................... .................... .................... .................... .................... .................... .................... .................... .................... .................... .................... .................... .................... .....................
output:
0
result:
ok single line: '0'
Test #22:
score: 0
Accepted
time: 3ms
memory: 5284kb
input:
20 20 5 .....EEEEEEEEEE..... PPPPPPPPPPPPPPPPPPPP PPPPPPPPPPPPPPPPPPPP PPPPPPPPPPPPPPPPPPPP PPPPPPPPPPPPPPPPPPPP PPPPPPPPPPPPPPPPPPPP .................... .................... .................... .................... .................... .................... .................... ......................
output:
50
result:
ok single line: '50'
Test #23:
score: 0
Accepted
time: 879ms
memory: 27532kb
input:
20 20 200 P#PPP#PPP#PPP#PPP#E# P#P#P#P#P#P#P#P#P#P# P#P#P#P#P#P#P#P#P#P# P#P#P#P#P#P#P#P#P#P# P#P#P#P#P#P#P#P#P#P# P#P#P#P#P#P#P#P#P#P# P#P#P#P#P#P#P#P#P#P# P#P#P#P#P#P#P#P#P#P# P#P#P#P#P#P#P#P#P#P# P#P#P#P#P#P#P#P#P#P# P#P#P#P#P#P#P#P#P#P# P#P#P#P#P#P#P#P#P#P# P#P#P#P#P#P#P#P#P#P# P#P#P#P#P#P#P#P#P...
output:
200
result:
ok single line: '200'
Test #24:
score: 0
Accepted
time: 0ms
memory: 3632kb
input:
3 5 2 P.E.P ..... ..P..
output:
1
result:
ok single line: '1'
Test #25:
score: 0
Accepted
time: 1ms
memory: 3808kb
input:
1 20 19 P..................E
output:
1
result:
ok single line: '1'
Test #26:
score: 0
Accepted
time: 1ms
memory: 3788kb
input:
6 9 6 ..E...E.. ......... ##.###.## #P...P.P# #.P...PP# #########
output:
6
result:
ok single line: '6'
Test #27:
score: 0
Accepted
time: 1ms
memory: 3792kb
input:
6 9 6 ..E...E.. ......... ##.###.## #P.P...P# #PP...P.# #########
output:
6
result:
ok single line: '6'
Test #28:
score: 0
Accepted
time: 1ms
memory: 3720kb
input:
9 6 6 ####.. #.P#.. #P...E #..#.. #..#.. #.P#.. #P...E #PP#.. ####..
output:
6
result:
ok single line: '6'
Test #29:
score: 0
Accepted
time: 1ms
memory: 3784kb
input:
9 6 6 ####.. #PP#.. #P...E #.P#.. #..#.. #..#.. #P...E #.P#.. ####..
output:
6
result:
ok single line: '6'
Test #30:
score: 0
Accepted
time: 1ms
memory: 3676kb
input:
6 9 6 ######### #PP...P.# #P.P...P# ##.###.## ......... ..E...E..
output:
6
result:
ok single line: '6'
Test #31:
score: 0
Accepted
time: 1ms
memory: 4020kb
input:
6 9 6 ######### #.P...PP# #P...P.P# ##.###.## ......... ..E...E..
output:
6
result:
ok single line: '6'
Test #32:
score: 0
Accepted
time: 1ms
memory: 3936kb
input:
9 6 6 ..#### ..#PP# E...P# ..#P.# ..#..# ..#..# E...P# ..#P.# ..####
output:
6
result:
ok single line: '6'
Test #33:
score: 0
Accepted
time: 1ms
memory: 3784kb
input:
9 6 6 ..#### ..#P.# E...P# ..#..# ..#..# ..#P.# E...P# ..#PP# ..####
output:
6
result:
ok single line: '6'
Test #34:
score: 0
Accepted
time: 19ms
memory: 27484kb
input:
20 20 200 P#...#...#...#...#E# .#.#.#.#.#.#.#.#.#.# .#.#.#.#.#.#.#.#.#.# .#.#.#.#.#.#.#.#.#.# .#.#.#.#.#.#.#.#.#.# .#.#.#.#.#.#.#.#.#.# .#.#.#.#.#.#.#.#.#.# .#.#.#.#.#.#.#.#.#.# .#.#.#.#.#.#.#.#.#.# .#.#.#.#.#.#.#.#.#.# .#.#.#.#.#.#.#.#.#.# .#.#.#.#.#.#.#.#.#.# .#.#.#.#.#.#.#.#.#.# .#.#.#.#.#.#.#.#....
output:
0
result:
ok single line: '0'
Test #35:
score: 0
Accepted
time: 60ms
memory: 66592kb
input:
20 20 200 .................... .................... .................... .................... .................... .................... .................... .................... .................... .................... .................... .................... .................... ....................
output:
0
result:
ok single line: '0'
Test #36:
score: 0
Accepted
time: 4ms
memory: 6748kb
input:
20 20 14 ..###P#.EP......#... P#P.#.P.#......E.#P. .##P#......#.#.#.... ..PP#P...#....##.... P..P..PP..EE.#..#.#. #P#....PPP#P.P..E##. .###PPP.#.E.P.E.PP.. #PP.PP...EPP##PP.P.. ..##.P..#P##.E.##P#E E.....P...#P.#.#..#. ....#.#..#..EP.#.P.. ....EPEE#.....E..... .P..#..P.E...P.PEP#. P..EP.##E...#.P.##...
output:
75
result:
ok single line: '75'
Test #37:
score: 0
Accepted
time: 7ms
memory: 8888kb
input:
20 20 23 ...P..PEPPPP.PPEP.P# E..P.##.E.P##EPPP.P. E.P..EP.P.#P..P#P.#P .E.P....###EP.#PPPEP EE#P.P.P.PPP.#..P#PP EP..##PP...PP.P..P.E #E.E.#P.#.#..E#..PPP EP#PPE##.P.PE.PPP.P. P.PEPP.#...P#P.PPP.E .#P.E.PP.PP...P.P.P. #...#P#P##P#E#P.#... #P#PP.PP#..PEPP.#PPP P#.P.P##PP.#.P##P#P# ..#.#E.#E....PP......
output:
148
result:
ok single line: '148'
Test #38:
score: 0
Accepted
time: 3ms
memory: 5840kb
input:
20 20 10 #.P.....##....#.PPP. #..PP...PP.#........ #..#.......#..#...## .PE..P..........#..# P##P....E.....E#.... P............#..#... .E#..............P.. ..........#..P....#. ###.E#.##P..#....E#P E.#.#...#.##..E..P.. P#............P..#.# .PPP###...P......... ..#...P.....#...#.#. ...#.E..P..#P##..#...
output:
38
result:
ok single line: '38'
Test #39:
score: 0
Accepted
time: 0ms
memory: 5792kb
input:
20 20 10 E..P...E..P.#.P....# .........#.......#.E E......EP..#........ .P...#.#.#.PP.....E. ........P#.......##. ..#.##.#.P#...E#P### ....#..#.P#E...PP##. ....P#...E......#..# .#.P......#P.E...... ....E.......E......P .#.E...........#P#E# ......#...PP.....##. ..#......#...E##.#.. ..E...#...#......P...
output:
36
result:
ok single line: '36'
Test #40:
score: 0
Accepted
time: 3ms
memory: 5904kb
input:
20 20 10 ..E...P##.P#.E....#. .P...E#....P......#. P.#.#..#.....E...E.. .##......P.E........ #..P#.P..#.P...E.P.. ...P..........#..#.. .E...E.........P#.P# ....#..............# .#....E..#....#.P.#. ..#....P..#.....P... ...E...#E...#.#..... #...P.#..#......#### .#..P....P.P#...PP#E ..#......P#P...P.....
output:
33
result:
ok single line: '33'
Test #41:
score: 0
Accepted
time: 0ms
memory: 5896kb
input:
20 20 10 ....P.E.....#P...... .....E###.P.#P..#... .#.P.P..P....P...##P ..........P#E#..#..# #...E..#..........EP .E.P..#P...P#...E.#. ........#.#.P...PEE. .....P.....##..#E... ....P.....PE#....P#E .P.##..E.........#.P .#.....#E....#...#.P #..#..PE.#..P..#...# .....P....#.##..PP.. .................#...
output:
39
result:
ok single line: '39'
Test #42:
score: 0
Accepted
time: 3ms
memory: 6060kb
input:
20 20 10 ....#...P##.......P. ..P#E.#.P#.E....#... ....#..PPP.........# ....E#..P#....P#.... ...........#..##.#.. .....P........E#P... .........#P..E...... ..###.#.P##.....E#.# .#..P#......PE#....# #...##........#...#E .##.#..#P#..#.E..#.P E.#........#...P.... ..E##EP....PP#PP...# ....#..##P...#P..P...
output:
33
result:
ok single line: '33'
Test #43:
score: 0
Accepted
time: 0ms
memory: 3928kb
input:
1 1 200 E
output:
0
result:
ok single line: '0'
Test #44:
score: 0
Accepted
time: 0ms
memory: 3584kb
input:
1 1 200 P
output:
0
result:
ok single line: '0'
Test #45:
score: 0
Accepted
time: 0ms
memory: 3632kb
input:
1 1 200 .
output:
0
result:
ok single line: '0'
Test #46:
score: 0
Accepted
time: 0ms
memory: 3524kb
input:
1 1 200 #
output:
0
result:
ok single line: '0'
Test #47:
score: 0
Accepted
time: 0ms
memory: 3664kb
input:
1 2 1 PE
output:
1
result:
ok single line: '1'
Test #48:
score: 0
Accepted
time: 0ms
memory: 3620kb
input:
1 3 1 P.E
output:
0
result:
ok single line: '0'
Test #49:
score: 0
Accepted
time: 1ms
memory: 3852kb
input:
20 1 19 P . . . . . . . . . . . . . . . . . . E
output:
1
result:
ok single line: '1'