QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#709206 | #9246. Dominating Point | SSAABBEERR | WA | 0ms | 3916kb | C++20 | 1.2kb | 2024-11-04 12:53:12 | 2024-11-04 12:53:13 |
Judging History
answer
#include<bits/stdc++.h>
#define lowbit(x) (x & (-x))
#define endl "\n"
#define ll long long
// #define int long long
using namespace std;
#define pii pair<int, int>
#define rep(i, a, b) for(int i = a; i <= b; i ++ )
#define pre(i, a, b) for(int i = a; i >= b; i -- )
#define IOS ios::sync_with_stdio(false); cin.tie(0); cout.tie(0);
mt19937_64 rnd(time(0));
const int N = 1e6 + 10;
int n, m, k;
string s[5050];
int a[10], b[10];
bitset<5050>dis[5050];
void solve()
{
cin >> n;
rep(i, 1, n)
{
cin >> s[i];
s[i] = " " + s[i];
rep(j, 1, n)
{
if(s[i][j] == '1')
{
dis[i][j] = 1;
}
}
}
rep(i, 1, n)
{
dis[i][i] = 1;
rep(j, 1, n)
{
if(s[i][j] == '1') dis[i] |= dis[j];
}
}
vector<int>ans;
pre(i, n, 1)
{
if(dis[i].count() == n) ans.push_back(i);
}
if(ans.size() < 3)
{
cout << "NOT FOUND" << endl;
}
else
{
rep(i, 0, 2) cout << ans[i] << " ";
}
}
signed main()
{
IOS;
int _;
_ = 1;
// cin >> _;
while(_ -- )
{
solve();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3916kb
input:
6 011010 000101 010111 100001 010100 100010
output:
6 5 4
result:
wrong answer Wrong Answer, Point not dominating.