QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#659619 | #9246. Dominating Point | xueman | TL | 444ms | 103644kb | C++23 | 3.6kb | 2024-10-19 21:00:12 | 2024-10-19 21:00:12 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define endl '\n'
const int N = 5000 + 10;
const int maxn = N * N + 10;
#pragma comment(linker, "/STACK:102400000,102400000")
int fa[N], siz[N]; // fa数组记得初始化
int find(int x)
{
if (fa[x] == x)
return x;
return fa[x] = find(fa[x]);
}
int n;
bool merge(int x, int y)
{
x = find(x), y = find(y);
if (x == y)
return false;
if (siz[x] < siz[y])
swap(x, y);
fa[y] = x;
siz[x] += siz[y];
return true;
}
struct egde
{
int to, ne;
} e[maxn];
int head[N], ecnt = 1;
void add(int x, int y)
{
e[++ecnt].to = y;
e[ecnt].ne = head[x];
head[x] = ecnt;
}
// ecnt = 1;
int dfn[N], low[N], tot;
int stk[N], instk[N], top;
int scc[N], sz[N], cnt;
void tarjan(int x)
{
low[x] = dfn[x] = ++tot;
stk[++top] = x, instk[x] = 1;
for (int i = head[x]; i; i = e[i].ne)
{
int y = e[i].to;
if (!dfn[y])
{
tarjan(y);
low[x] = min(low[x], low[y]);
}
else if (instk[y])
low[x] = min(low[x], dfn[y]);
}
if (dfn[x] == low[x])
{
int y;
cnt++;
do
{
y = stk[top--];
instk[y] = 0;
scc[y] = cnt, sz[cnt]++;
} while (y != x);
}
}
int d[N];
vector<int> ans;
bool bfs(int pos)
{
int cnt = 1;
for (int i = 1; i <= n; i++)
d[i] = 0;
queue<int> q;
q.push(pos);
d[pos] = 1;
while (!q.empty())
{
int x = q.front();
q.pop();
if (cnt == n)
return true;
if (d[x] == 3)
continue;
for (int i = head[x]; i; i = e[i].ne)
{
int y = e[i].to;
if (d[y] == 0)
{
cnt++;
d[y] = d[x] + 1;
if (cnt == n)
return true;
if (d[y] != 3)
q.push(y);
}
}
}
return false;
}
int in[N];
int main()
{
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
// freopen("in.txt", "r", stdin);
// freopen("out.txt", "w", stdout);
cin >> n;
for (int i = 0; i <= n; i++)
siz[i] = 1, fa[i] = i;
for (int i = 1; i <= n; i++)
{
// string s;
// cin >> s;
// s = ' ' + s;
for (int j = 1; j <= n; j++)
{
char ch;
cin >> ch;
if (j != i && ch == '1')
{
add(i, j);
merge(i, j);
}
}
}
// cout << 1 ;
if (siz[find(1)] != n)
{
// cout << 1;
cout << "NOT FOUND" << endl;
return 0;
}
for (int i = 1; i <= n; i++)
{
if (!dfn[i])
{
tarjan(i);
}
}
for (int x = 1; x <= n; x++)
{
for (int i = head[x]; i; i = e[i].ne)
{
int y = e[i].to;
if (scc[x] != scc[y])
in[scc[y]]++;
}
}
// cout << scc[1] << ' ' << scc[2] << ' ' << scc[3] << ' ' << scc[4] << endl;
for (int i = 1; i <= n; i++)
{
if (!in[scc[i]])
{
if (bfs(i))
{
ans.push_back(i);
if (ans.size() >= 3)
{
for (auto x : ans)
cout << x << ' ';
return 0;
}
}
}
}
cout << "NOT FOUND" << endl;
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3800kb
input:
6 011010 000101 010111 100001 010100 100010
output:
1 3 4
result:
ok OK, Answer correct.
Test #2:
score: 0
Accepted
time: 0ms
memory: 3608kb
input:
3 011 001 000
output:
NOT FOUND
result:
ok OK, Answer correct.
Test #3:
score: 0
Accepted
time: 0ms
memory: 3644kb
input:
3 010 001 100
output:
1 2 3
result:
ok OK, Answer correct.
Test #4:
score: 0
Accepted
time: 444ms
memory: 101932kb
input:
4994 0100001010011001010101110010101000111101111100100001110010000111100000000100110100101000001010100000010010010110110110111010010010100110100000110110111001010111010111010111011001000101001000010001010111110000000100001100000111100011001010010111011100111010101110011000010111101011111110001111110...
output:
1 2 3
result:
ok OK, Answer correct.
Test #5:
score: 0
Accepted
time: 440ms
memory: 102240kb
input:
4994 0000000110000010100001001010100101010001000000011001110000111011100010100100001001011100000101100000100100001101101101010010110011101100101001100101110010001111110111001101000110111001010011101001010101000000111101101111001011111011000001110010000000110101010010010100100101111111001000111111011...
output:
1 2 3
result:
ok OK, Answer correct.
Test #6:
score: 0
Accepted
time: 439ms
memory: 102820kb
input:
4995 0010100011010011000010101100100000011100110100010101010101000001011110100010001001011001100001111100011010001110011101111001110001000000101010001000010000010001011010010001100001010111011111011011110110000101001000000100000000000010111010101111111100001010001000000001001110000110011001111001111...
output:
1 2 3
result:
ok OK, Answer correct.
Test #7:
score: 0
Accepted
time: 441ms
memory: 101788kb
input:
4998 0011100111111001011100001111010010000111001110101001001011010111100010001110000001000010011011011110001110101111010011000101001101001000100110111110001001100111111000010101010101000110011100011001010110111110000100000010000101001000100011000010101111101101000000101010100111010101111101111100010...
output:
1 2 3
result:
ok OK, Answer correct.
Test #8:
score: 0
Accepted
time: 443ms
memory: 103644kb
input:
4994 0010111010011101101110001111100011010010010000101101110110110000100010000101011100000001011100010001000011010101011111100011010000010110000011110010011000101011100011110110011101110000101100111110000110100111001101000100011001001001100001101110001100111011100111001011001011010111111001001000010...
output:
1 2 3
result:
ok OK, Answer correct.
Test #9:
score: 0
Accepted
time: 0ms
memory: 3560kb
input:
1 0
output:
NOT FOUND
result:
ok OK, Answer correct.
Test #10:
score: 0
Accepted
time: 0ms
memory: 3516kb
input:
2 01 00
output:
NOT FOUND
result:
ok OK, Answer correct.
Test #11:
score: -100
Time Limit Exceeded
input:
4998 0101101111101110111110111111111111111101111111010110100111111101110101111101111110101111011111100010111011110100111111111101011101101100110111101110110101101110111011001111101011111101111001111101011111100110111110010011010111101111011010110101011111101011101110111111101101011111010010110101111...