1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#include "osalib.h"
#include <vector>
using namespace std;
#define MAKS 1010
char tab[MAKS][MAKS];
bool bylo[MAKS][MAKS];
int osad;
int n,m;
void NowaWyspa(int _n, int _m, char **board)
{
    n=_n; m=_m;
    osad=0;
    for(int i=0;i<n;i++)
    {
        for(int j=0;j<m;j++)
        {
            if(board[i][j]=='K')osad++;
            tab[i+1][j+1]=board[i][j];
        }
    }
    for(int j=0;j<=m+1;j++)tab[0][j]='W';
    for(int j=0;j<=m+1;j++)tab[n+1][j]='W';
    for(int i=0;i<=n+1;i++)tab[i][0]='W';
    for(int i=0;i<=n+1;i++)tab[i][m+1]='W';
}
int sas[4][2]={{-1,0},{0,-1},{1,0},{0,1}};
int licz;
void dfs(int i, int j)
{
    bylo[i][j]=true;
    if(tab[i][j]=='K')licz++;
    for(int q=0;q<4;q++)
    {
        int ni=i+sas[q][0]; int nj=j+sas[q][1];
        if(tab[ni][nj]=='W')continue;
        if(!bylo[ni][nj])dfs(ni,nj);
    }
}

int NowaWarownia(int r, int c)
{
    tab[r][c]='W';
    for(int i=0;i<=n+1;i++)
    {
        for(int j=0;j<=m+1;j++)bylo[i][j]=false;
    }
    
    for(int i=n;i>=1;i--)
    {
        for(int j=m;j>=1;j--)
        {
            if(tab[i][j]=='K')
            {
                licz=0;
                dfs(i,j);
                if(licz==osad)return 1;
                tab[r][c]='.';
                return 0;
            }
        }
    }
    
}

void PrzeniesOsade(int r1, int c1, int r2, int c2)
{
    tab[r1][c1]='.';
    tab[r2][c2]='K';
}