QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#188605#5489. Room EvacuationGamal74AC ✓2862ms42216kbC++203.9kb2023-09-26 04:14:562023-09-26 04:14:56

Judging History

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

  • [2023-09-26 04:14:56]
  • 评测
  • 测评结果:AC
  • 用时:2862ms
  • 内存:42216kb
  • [2023-09-26 04:14:56]
  • 提交

answer

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef long double ld;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
typedef vector<int> vi;

#define fi first
#define se second
#define pp push_back
#define all(x) (x).begin(), (x).end()
#define Ones(n) __builtin_popcount(n)
#define endl '\n'
#define mem(arrr, xx) memset(arrr,xx,sizeof arrr)
//#define int long long
#define debug(x) cout << (#x) << " = " << x << endl

void Gamal() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
    cout.tie(nullptr);
#ifdef Clion
    freopen("input.txt", "r", stdin), freopen("output.txt", "w", stdout);
#endif
}

int dx[] = {+0, +0, -1, +1, +1, +1, -1, -1};
int dy[] = {-1, +1, +0, +0, +1, -1, +1, -1};

const double EPS = 1e-9;
const ll OO = 0X3F3F3F3F3F3F3F3F;
const int N = 20 + 5, INF = INT_MAX, MOD = 1e9 + 7, LOG = 20;

#define rep(aa, bb, cc) for(int aa = bb; aa < cc;aa++)

struct Dinic {
    struct Edge {
        int to, rev;
        ll c, oc;

        ll flow() { return max(oc - c, 0LL); } // if you need flows
    };

    vi lvl, ptr, q;
    vector<vector<Edge>> adj;

    Dinic(int n) : lvl(n), ptr(n), q(n), adj(n) {}

    void addEdge(int a, int b, ll c, ll rcap = 0) {
        adj[a].push_back({b, (int) adj[b].size(), c, c});
        adj[b].push_back({a, (int) adj[a].size() - 1, rcap, rcap});
    }

    ll dfs(int v, int t, ll f) {
        if (v == t || !f) return f;
        for (int &i = ptr[v]; i < (int) adj[v].size(); i++) {
            Edge &e = adj[v][i];
            if (lvl[e.to] == lvl[v] + 1)
                if (ll p = dfs(e.to, t, min(f, e.c))) {
                    e.c -= p, adj[e.to][e.rev].c += p;
                    return p;
                }
        }
        return 0;
    }

    ll calc(int s, int t) {
        ll flow = 0;
        q[0] = s;
        rep(L, 0, 31) do { // 'int L=30' maybe faster for random data
                lvl = ptr = vi((int) q.size());
                int qi = 0, qe = lvl[s] = 1;
                while (qi < qe && !lvl[t]) {
                    int v = q[qi++];
                    for (Edge e: adj[v])
                        if (!lvl[e.to] && e.c >> (30 - L))
                            q[qe++] = e.to, lvl[e.to] = lvl[v] + 1;
                }
                while (ll p = dfs(s, t, LLONG_MAX)) flow += p;
            } while (lvl[t]);
        return flow;
    }

    bool leftOfMinCut(int a) { return lvl[a] != 0; }
};

int n, m;

int conv(int i, int j, int t, int o) {
    return 2 * (i * m + j + t * (n * m)) + o;
}

char arr[N][N];

void solve() {
    int t;
    cin >> n >> m >> t;
    for (int i = 0; i < n; ++i) {
        for (int j = 0; j < m; ++j) {
            cin >> arr[i][j];
        }
    }
    int src = 2 * n * m * (t + 1), sink = src + 1;
    Dinic flw(sink + 1);
    // handle src to nodes
    for (int i = 0; i < n; ++i) {
        for (int j = 0; j < m; ++j) {
            if (arr[i][j] == '#')continue;
            if (arr[i][j] == 'P')flw.addEdge(src, conv(i, j, 0, 0), 1);
            if (arr[i][j] == 'E')for (int k = 0; k <= t; ++k)flw.addEdge(conv(i, j, k, 1), sink, 1);
            for (int k = 0; k <= t; ++k) {
                flw.addEdge(conv(i, j, k, 0), conv(i, j, k, 1), 1);
                if (k != t)flw.addEdge(conv(i, j, k, 1), conv(i, j, k + 1, 0), 1);
            }
            for (int k = 0; k < 4; ++k) {
                int ni = i + dx[k];
                int nj = j + dy[k];
                if (ni < 0 || ni >= n || nj < 0 || nj >= m || arr[ni][nj] == '#')continue;
                for (int l = 0; l < t; ++l) {
                    flw.addEdge(conv(i, j, l, 1), conv(ni, nj, l + 1, 0), 1);
                }
            }
        }
    }
    cout << flw.calc(src, sink);
}


signed main() {
    Gamal();
    int t = 1;
//    cin >> t;
    while (t--) {
        solve();
    }
}

详细

Test #1:

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

input:

4 5 3
.....
..P#.
..PPE
..P.E

output:

4

result:

ok single line: '4'

Test #2:

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

input:

3 3 5
...
P#P
P#E

output:

2

result:

ok single line: '2'

Test #3:

score: 0
Accepted
time: 3ms
memory: 9232kb

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: 1ms
memory: 3624kb

input:

4 1 137
.
#
#
#

output:

0

result:

ok single line: '0'

Test #5:

score: 0
Accepted
time: 15ms
memory: 17724kb

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

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: 2ms
memory: 4820kb

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: 18ms
memory: 20136kb

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: 8732kb

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: 3728kb

input:

2 1 167
P
P

output:

0

result:

ok single line: '0'

Test #11:

score: 0
Accepted
time: 3ms
memory: 12372kb

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: 0ms
memory: 10080kb

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: 4ms
memory: 13132kb

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: 9336kb

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: 4952kb

input:

2 12 200
#P.E.#...P#E
E.##..#.P#..

output:

1

result:

ok single line: '1'

Test #16:

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

input:

12 1 108
#
#
E
P
#
.
P
#
E
#
#
.

output:

1

result:

ok single line: '1'

Test #17:

score: 0
Accepted
time: 7ms
memory: 15248kb

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: 2862ms
memory: 42216kb

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: 54ms
memory: 41744kb

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: 6ms
memory: 10704kb

input:

20 20 38
E...................
....................
....................
....................
....................
....................
....................
....................
....................
....................
....................
....................
....................
.....................

output:

1

result:

ok single line: '1'

Test #21:

score: 0
Accepted
time: 6ms
memory: 10536kb

input:

20 20 37
E...................
....................
....................
....................
....................
....................
....................
....................
....................
....................
....................
....................
....................
.....................

output:

0

result:

ok single line: '0'

Test #22:

score: 0
Accepted
time: 2ms
memory: 4860kb

input:

20 20 5
.....EEEEEEEEEE.....
PPPPPPPPPPPPPPPPPPPP
PPPPPPPPPPPPPPPPPPPP
PPPPPPPPPPPPPPPPPPPP
PPPPPPPPPPPPPPPPPPPP
PPPPPPPPPPPPPPPPPPPP
....................
....................
....................
....................
....................
....................
....................
......................

output:

50

result:

ok single line: '50'

Test #23:

score: 0
Accepted
time: 397ms
memory: 18816kb

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: 3884kb

input:

3 5 2
P.E.P
.....
..P..

output:

1

result:

ok single line: '1'

Test #25:

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

input:

1 20 19
P..................E

output:

1

result:

ok single line: '1'

Test #26:

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

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: 3728kb

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: 3616kb

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: 3732kb

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: 3680kb

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: 3728kb

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: 3924kb

input:

9 6 6
..####
..#P.#
E...P#
..#..#
..#..#
..#P.#
E...P#
..#PP#
..####

output:

6

result:

ok single line: '6'

Test #34:

score: 0
Accepted
time: 27ms
memory: 18828kb

input:

20 20 200
P#...#...#...#...#E#
.#.#.#.#.#.#.#.#.#.#
.#.#.#.#.#.#.#.#.#.#
.#.#.#.#.#.#.#.#.#.#
.#.#.#.#.#.#.#.#.#.#
.#.#.#.#.#.#.#.#.#.#
.#.#.#.#.#.#.#.#.#.#
.#.#.#.#.#.#.#.#.#.#
.#.#.#.#.#.#.#.#.#.#
.#.#.#.#.#.#.#.#.#.#
.#.#.#.#.#.#.#.#.#.#
.#.#.#.#.#.#.#.#.#.#
.#.#.#.#.#.#.#.#.#.#
.#.#.#.#.#.#.#.#....

output:

0

result:

ok single line: '0'

Test #35:

score: 0
Accepted
time: 60ms
memory: 42048kb

input:

20 20 200
....................
....................
....................
....................
....................
....................
....................
....................
....................
....................
....................
....................
....................
....................

output:

0

result:

ok single line: '0'

Test #36:

score: 0
Accepted
time: 3ms
memory: 5716kb

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: 3ms
memory: 6872kb

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: 2ms
memory: 5020kb

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: 2ms
memory: 5024kb

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: 2ms
memory: 5296kb

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: 2ms
memory: 4976kb

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: 2ms
memory: 5008kb

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: 3656kb

input:

1 1 200
E

output:

0

result:

ok single line: '0'

Test #44:

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

input:

1 1 200
P

output:

0

result:

ok single line: '0'

Test #45:

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

input:

1 1 200
.

output:

0

result:

ok single line: '0'

Test #46:

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

input:

1 1 200
#

output:

0

result:

ok single line: '0'

Test #47:

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

input:

1 2 1
PE

output:

1

result:

ok single line: '1'

Test #48:

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

input:

1 3 1
P.E

output:

0

result:

ok single line: '0'

Test #49:

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

input:

20 1 19
P
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
E

output:

1

result:

ok single line: '1'