QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#795638 | #6534. Peg Solitaire | buling | AC ✓ | 1ms | 3736kb | C++17 | 3.0kb | 2024-11-30 22:28:47 | 2024-11-30 22:28:48 |
Judging History
answer
#include "bits/stdc++.h"
#define int long long
using namespace std;
const int N = 2e6 + 10;
int n, m, k;
int a[10][10], num, ans;
struct node
{
int x, y; /* data */
} q[N];
bool cmp(node w, node v)
{
return w.x < v.x;
}
void dfs()
{
for (int i = 1; i <= n; i++)
{
for (int j = 1; j <= m; j++)
{
if (a[i][j] && i + 1 <= n && a[i + 1][j])
{
if (i + 2 <= n && !a[i + 2][j])
{
a[i][j] = a[i + 1][j] = 0;
a[i + 2][j] = 1;
num--;
ans = min(ans, num);
dfs();
a[i][j] = a[i + 1][j] = 1;
a[i + 2][j] = 0;
num++;
}
if (i - 1 >= 1 && !a[i - 1][j])
{
a[i][j] = a[i + 1][j] = 0;
a[i - 1][j] = 1;
num--;
ans = min(ans, num);
dfs();
a[i][j] = a[i + 1][j] = 1;
a[i - 1][j] = 0;
num++;
}
}
if (a[i][j] && j + 1 <= m && a[i][j + 1])
{
if (j + 2 <= m && !a[i][j + 2])
{
a[i][j] = a[i][j + 1] = 0;
a[i][j + 2] = 1;
num--;
ans = min(ans, num);
dfs();
a[i][j] = a[i][j + 1] = 1;
a[i][j + 2] = 0;
num++;
}
if (j - 1 >= 1 && !a[i][j - 1])
{
a[i][j] = a[i][j + 1] = 0;
a[i][j - 1] = 1;
num--;
ans = min(ans, num);
dfs();
a[i][j] = a[i][j + 1] = 1;
a[i][j - 1] = 0;
num++;
}
}
}
}
}
void solve()
{
// cin >> n;
for (int i = 0; i < 10; i++)
for (int j = 0; j < 10; j++)
a[i][j] = 0;
cin >> n >> m >> k;
ans = k;
num = k;
for (int i = 1; i <= k; i++)
{
int x, y;
cin >> x >> y;
a[x][y] = 1;
}
dfs();
cout << ans << endl;
// for (int i = 1; i <= n; i++)
// {
// cin >> a[i];
// }
// cin >> m;
// int h = 1, t = 0;
// for (int i = 1; i <= m; i++)
// {
// cin >> q[i].x >> q[i].y;
// }
// sort(q + 1, q + m + 1, cmp);
// for (int i = 1; i <= m; i++)
// {
// int l = q[i].x, r = q[i].y;
// }
}
signed main()
{
ios::sync_with_stdio(false);
cin.tie(0);
//
// freopen("in.txt", "r", stdin);
// freopen("out.txt", "w", stdout);
int t = 1;
cin >> t;
while (t--)
{
solve();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3664kb
input:
3 3 4 5 2 2 1 2 1 4 3 4 1 1 1 3 3 1 1 1 2 1 3 2 1 1 2 1
output:
2 3 1
result:
ok 3 number(s): "2 3 1"
Test #2:
score: 0
Accepted
time: 0ms
memory: 3736kb
input:
20 2 1 2 1 1 2 1 5 1 3 3 1 2 1 4 1 3 3 6 1 2 2 2 1 1 2 3 3 1 3 2 4 4 4 2 3 3 1 3 2 1 2 1 1 1 1 1 5 2 6 3 2 4 1 2 1 5 2 2 2 5 1 1 3 1 1 2 1 5 1 1 5 4 6 5 4 6 4 4 2 3 4 3 1 6 6 6 3 2 4 1 3 2 1 2 2 2 2 1 1 1 5 3 4 2 2 5 1 4 3 3 2 6 5 6 5 5 6 5 2 4 2 1 3 4 1 4 2 6 5 1 6 2 1 1 4 2 3 1 3 3 5 6 2 1 3 3 1 5...
output:
2 2 3 1 1 2 1 1 3 3 2 1 3 3 2 1 3 1 2 2
result:
ok 20 numbers
Test #3:
score: 0
Accepted
time: 0ms
memory: 3620kb
input:
20 2 1 1 2 1 4 3 2 4 3 1 1 6 4 6 4 3 5 4 4 2 3 2 3 4 2 3 3 6 4 3 1 2 6 2 4 3 5 6 6 6 3 3 3 6 4 2 3 2 4 1 1 4 3 3 1 1 1 2 3 2 2 2 2 1 3 2 2 1 2 2 2 3 4 5 2 1 3 4 3 1 2 2 3 2 2 5 5 1 5 2 3 2 5 1 4 2 2 5 6 6 5 1 2 2 1 4 5 3 4 4 1 1 2 3 4 1 1 1 2 2 2 2 1 2 3 4 1 1 2 1 1 2 2 2 6 3 6 4 2 4 1 1 3 6 2 3 3 2...
output:
1 2 2 4 4 1 1 1 2 2 6 2 2 3 4 1 1 1 3 2
result:
ok 20 numbers
Test #4:
score: 0
Accepted
time: 0ms
memory: 3620kb
input:
20 1 5 3 1 2 1 3 1 1 5 6 6 5 4 2 4 4 4 4 6 2 5 3 3 5 2 4 4 1 3 1 4 2 5 2 6 3 6 3 1 5 2 3 2 4 1 4 3 3 3 5 3 5 5 2 2 2 3 1 4 3 3 2 6 1 4 3 1 5 1 1 1 4 1 3 5 6 1 1 2 1 3 4 1 5 2 2 3 3 2 5 2 2 5 2 1 5 4 6 1 3 4 3 2 2 1 2 3 3 2 3 2 3 3 2 3 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 6 4 5 2 1 6 2 3 2 1 2 4 2 5...
output:
2 1 2 2 1 2 3 2 2 3 1 1 1 3 2 2 2 3 2 1
result:
ok 20 numbers
Test #5:
score: 0
Accepted
time: 1ms
memory: 3608kb
input:
20 6 6 6 2 4 3 4 3 3 4 3 4 2 5 2 6 6 6 2 4 3 4 3 3 4 3 4 2 5 2 6 6 6 2 4 3 4 3 3 4 3 4 2 5 2 6 6 6 2 4 3 4 3 3 4 3 4 2 5 2 6 6 6 2 4 3 4 3 3 4 3 4 2 5 2 6 6 6 2 4 3 4 3 3 4 3 4 2 5 2 6 6 6 2 4 3 4 3 3 4 3 4 2 5 2 6 6 6 2 4 3 4 3 3 4 3 4 2 5 2 6 6 6 2 4 3 4 3 3 4 3 4 2 5 2 6 6 6 2 4 3 4 3 3 4 3 4 2 5...
output:
2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
result:
ok 20 numbers