QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#221877 | #5509. Kooky Tic-Tac-Toe | ucup-team859# | AC ✓ | 48ms | 3896kb | C++23 | 4.8kb | 2023-10-21 14:57:24 | 2023-10-21 14:57:24 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
using namespace chrono;
using ll = long long;
using ull = unsigned long long;
string to_string(const string &s) {
return '"' + s + '"';
}
string to_string(bool b) {
return b ? "true" : "false";
}
template <typename A, typename B>
string to_string(const pair<A, B> &p) {
return "(" + to_string(p.first) + ", " + to_string(p.second) + ")";
}
template <typename T>
string to_string(const T &v) {
string s = "{";
bool first = true;
for (const auto &it : v) {
if (!first)
s += ", ";
else
first = false;
s += to_string(it);
}
return s += "}";
}
void debug_out() {
cerr << endl;
}
template <typename T, typename... Args>
void debug_out(const T &first, const Args&... rest) {
cerr << to_string(first) << " ";
debug_out(rest...);
}
#define debug(...) cerr << "[" << #__VA_ARGS__ << "]:", debug_out(__VA_ARGS__)
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
auto startTime = high_resolution_clock::now();
int get_time() {
auto stopTime = chrono::high_resolution_clock::now();
auto duration = duration_cast<milliseconds>(stopTime - startTime);
return duration.count(); // in ms
}
void solve() {
int n, m, k;
cin >> n >> k;
m = n;
vector<string> s(n);
for (int i = 0; i < n; ++i)
cin >> s[i];
int nx = 0, no = 0, lib = 0;
for (int i = 0; i < n; ++i) {
for (int j = 0; j < m; ++j) {
if (s[i][j] == 'x')
++nx;
else if (s[i][j] == 'o')
++no;
else
++lib;
}
}
auto check_win = [&]() {
for (int i = 0; i < n; ++i) {
for (int j = 0; j < n; ++j) {
if (s[i][j] == '.')
continue;
bool ok = true;
for (int t = 1; t < k; ++t) {
if (!(j + t < n && s[i][j] == s[i][j + t]))
ok = false;
}
if (ok)
return true;
ok = true;
for (int t = 1; t < k; ++t) {
if (!(i + t < n && s[i][j] == s[i + t][j]))
ok = false;
}
if (ok)
return true;
ok = true;
for (int t = 1; t < k; ++t) {
if (!(j + t < n && i + t < n && s[i][j] == s[i + t][j + t]))
ok = false;
}
if (ok)
return true;
ok = true;
for (int t = 1; t < k; ++t) {
if (!(j - t >= 0 && i + t < n && s[i][j] == s[i + t][j - t]))
ok = false;
}
if (ok)
return true;
}
}
return false;
};
auto who_wins = [&]() {
for (int i = 0; i < n; ++i) {
for (int j = 0; j < n; ++j) {
if (s[i][j] == '.')
continue;
bool ok = true;
for (int t = 1; t < k; ++t) {
if (!(j + t < n && s[i][j] == s[i][j + t]))
ok = false;
}
if (ok)
return s[i][j];
ok = true;
for (int t = 1; t < k; ++t) {
if (!(i + t < n && s[i][j] == s[i + t][j]))
ok = false;
}
if (ok)
return s[i][j];
ok = true;
for (int t = 1; t < k; ++t) {
if (!(j + t < n && i + t < n && s[i][j] == s[i + t][j + t]))
ok = false;
}
if (ok)
return s[i][j];
ok = true;
for (int t = 1; t < k; ++t) {
if (!(j - t >= 0 && i + t < n && s[i][j] == s[i + t][j - t]))
ok = false;
}
if (ok)
return s[i][j];
}
}
return '.';
};
if (no > nx || (who_wins() == 'x' && no == nx)) {
for (int i = 0; i < n; ++i) {
for (int j = 0; j < n; ++j) {
if (s[i][j] == 'o')
s[i][j] = 'x';
else if (s[i][j] == 'x')
s[i][j] = 'o';
}
}
swap(no, nx);
}
if (no + 1 < nx || (!check_win() && lib > 0)) {
cout << "NIE\n";
return;
}
vector<pair<int, int>> ans;
while (no > 0 || nx > 0) {
char ch = 'x';
bool found = false;
if (no == nx)
ch = 'o';
for (int i = 0; i < n && !found; ++i) {
for (int j = 0; j < n; ++j) {
if (s[i][j] == ch) {
s[i][j] = '.';
if (!check_win()) {
found = true;
ans.push_back({i, j});
break;
}
s[i][j] = ch;
}
}
}
if (!found) {
cout << "NIE\n";
return;
}
if (no == nx)
--no;
else
--nx;
}
cout << "TAK\n";
reverse(ans.begin(), ans.end());
for (auto it : ans)
cout << it.first + 1 << " " << it.second + 1 << endl;
}
int main() {
cin.tie(NULL);
ios_base::sync_with_stdio(false);
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: 3892kb
input:
7 3 3 x.o xxx o.o 4 3 xx.x ...o ..o. .o.. 3 3 xoo oxx xoo 3 2 xoo oxx xoo 3 3 xox .o. xox 3 2 xo. ..x xo. 3 3 x.. .x. ..x
output:
TAK 2 3 3 3 2 2 3 1 1 1 1 3 2 1 TAK 1 4 4 2 1 2 3 3 1 1 2 4 TAK 3 3 3 1 3 2 2 3 2 1 2 2 1 3 1 1 1 2 NIE NIE NIE NIE
result:
ok correct (7 test cases)
Test #2:
score: 0
Accepted
time: 15ms
memory: 3616kb
input:
10000 3 3 x.o xxx o.o 3 3 xoo oxx xoo 3 2 xoo oxx xoo 3 3 xox .o. xox 3 2 xo. ..x xo. 3 2 oox .xo o.x 5 5 xxx.. xxo.x xoo.. xxxox .oooo 3 3 xxx .o. oo. 3 2 x.o xo. ..o 3 2 ..x xxo .o. 3 3 xxo o.. oxo 3 2 oox ..x ... 3 3 xxo ... .ox 3 3 .xo ... oox 3 3 .x. xo. o.o 3 2 o.. xxo .ox 3 2 x.x xoo x.o 3 2 ...
output:
TAK 2 3 3 3 2 2 3 1 1 1 1 3 2 1 TAK 3 3 3 1 3 2 2 3 2 1 2 2 1 3 1 1 1 2 NIE NIE NIE NIE NIE TAK 3 2 1 3 3 1 1 2 2 2 1 1 NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE TAK 3 2 4 3 3 1 4 2 2 4 2 2 2 3 1 4 1 3 1 1 1 2 4 1 NIE NIE NIE NIE NIE TAK 4 4 4 3 4 1 4 2 3 4 3 2 3 3 2 2 3 1 1 4 ...
result:
ok correct (10000 test cases)
Test #3:
score: 0
Accepted
time: 48ms
memory: 3896kb
input:
10000 6 4 x.xx.o xo.o.x ooox.o o..xo. ..xxxo o.oxx. 6 5 oooxxx oxoxxo xoooxo xoxxxx xooxox xoxxxx 6 3 o.x.x. oo.o.x xx.oo. .x.xx. ooxo.. .xxo.. 6 6 xoo..o o.xx.x oooooo xx.x.. o..xx. ...xxx 6 5 xooxoo ooxxoo xxooxx oxooxx oxoxxx xxoxoo 6 5 xoxxxo ooooxo ooxoxx oxxoox xxxxox ooooxo 6 5 o....o .ox.oo ...
output:
TAK 6 3 6 5 6 1 6 4 5 6 5 5 4 5 5 4 4 1 5 3 3 6 4 4 3 3 2 6 3 2 2 1 3 1 1 4 2 4 1 3 2 2 1 1 1 6 3 4 NIE TAK 6 3 6 4 6 2 5 4 4 5 5 2 4 4 5 1 4 2 3 5 3 2 3 4 3 1 2 4 2 6 2 2 1 5 2 1 1 3 1 1 5 3 NIE TAK 6 4 6 6 6 2 6 5 6 1 6 3 5 6 5 3 5 5 5 1 5 4 4 4 5 2 4 3 4 6 4 1 4 5 3 4 4 2 3 3 3 6 2 6 3 5 2 5 3 2 ...
result:
ok correct (10000 test cases)