QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#282460 | #5523. Graph Problem With Small $n$ | duckier | TL | 1ms | 3548kb | C++14 | 1.1kb | 2023-12-12 07:28:09 | 2023-12-12 07:28:09 |
Judging History
answer
#include <bits/stdc++.h>
#define int long long
using namespace std;
const int MAXN = 24;
int n, dp[1LL << MAXN], adj[MAXN], ans[MAXN];
string s[MAXN];
signed main() {
cin.tie(NULL)->sync_with_stdio(0);
cin >> n;
for (int i = 1; i <= n; i++) cin >> s[i];
for (int i = 1; i <= n; i++) {
for (int j = 0; j < n; j++) {
if (s[i][j] == '1') adj[i] ^= 1LL << j;
}
}
dp[1] = 1;
for (int i = 2; i < 1LL << n; i++) {
vector<int> v;
for (int j = 0; j < n; j++) {
if ((1LL << j) & i)v.push_back(j);
}
if (v[0] != 0)continue;
for (int x : v) {
if (dp[i ^ (1LL << x)] & adj[x + 1]) {
dp[i] |= 1LL << x;
}
}
}
for (int c = 1; c <= n; c++) {
for (int i = 1; i < 1LL << n; i++) {
vector<int> v;
for (int j = 0; j < n; j++) {
if ((1LL << j) & i)v.push_back(j);
}
if (v[0] != 0)continue;
if (!(dp[i] & (1LL << (c - 1))))continue;
int comp = (((1LL << n) - 1) ^ i) + 1;
ans[c] |= dp[comp];
}
}
for (int i = 1; i <= n; i++) {
for (int j = 0; j < n; j++) {
if (ans[i] & (1LL << j)) {
cout << '1';
}
else {
cout << '0';
}
}
cout << '\n';
}
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3504kb
input:
4 0110 1010 1101 0010
output:
0001 0001 0000 1100
result:
ok 4 lines
Test #2:
score: 0
Accepted
time: 0ms
memory: 3428kb
input:
6 010001 101000 010100 001010 000101 100010
output:
010001 101000 010100 001010 000101 100010
result:
ok 6 lines
Test #3:
score: 0
Accepted
time: 1ms
memory: 3548kb
input:
4 0111 1011 1101 1110
output:
0111 1011 1101 1110
result:
ok 4 lines
Test #4:
score: -100
Time Limit Exceeded
input:
23 00000000000000000000000 00000000000000000000000 00000000000000000000000 00000000000000000000000 00000000000000000000000 00000000000000000000000 00000000000000000000000 00000000000000000000000 00000000000000000000000 00000000000000000000000 00000000000000000000000 00000000000000000000000 000000000...