QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#581112 | #9319. Bull Farm | MYdinosaur | TL | 152ms | 24064kb | C++14 | 5.7kb | 2024-09-22 09:34:58 | 2024-09-22 09:34:58 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
const int N = 2005, M = 1e6 + 10;
int n, l, qu, cnt = 0, tot = 0;
vector <int> re[N], v[N], vg[N];
vector <pair <int, int> > jb[N];
int vis[N], b[N], dfn[N], low[N], cl[N], tp[N], Ans[M];
bitset <N> as[N], pd[N];
struct node{
int a, b, v;
}qe[M];
stack <int> q;
queue <int> qh;
inline void read(int &x)
{
char c = getchar();
int w = 1;
x = 0;
while (!isdigit(c))
{
if (c == '-') w = -1;
c = getchar();
}
while (isdigit(c))
{
x = x * 10 + (c ^ 48);
c = getchar();
}
x = x * w;
}
void prepare()
{
for (int i = 1; i <= n; i++)
{
jb[i].clear();
v[i].clear();
re[i].clear();
}
read(n); read(l); read(qu);
for (int ii = 1; ii <= l; ii++)
{
string s;
cin >> s;
for (int i = 1; i <= n; i++) pd[i].reset();
for (int i = 1; i <= n; i++)
{
vis[i] = b[i] = 0;
}
for (int i = 0; i < 2 * n; i += 2)
{
int x = (s[i] - '0') * 50 + (s[i + 1] - '0');
int t = i / 2 + 1;
vis[x] ++;
b[t] = x;
// re[i].push_back(x);
}
int p1 = 0, p2 = 0, multi = 0, zero = 0;
for (int i = 1; i <= n; i++)
{
if (vis[i] > 1)
{
p1 += vis[i] - 1;
multi = i;
}
if (vis[i] == 0)
{
p2++;
zero = i;
}
if (p1 > 1 || p2 > 1) break;
}
// cout <<ii << " " << p1 << " " << p2 << endl;
if (p1 > 1 || p2 > 1) continue;
for (int i = 1; i <= n; i++)
{
if (p1 == 0) jb[ii].push_back({i, b[i]});
else
{
if (vis[b[i]] == 2) jb[ii].push_back({i, zero});
}
}
// if (p2) jb[ii].push_back({multi, zero});
}
for (int i = 1; i <= qu; i++)
{
Ans[i] = 0;
string s;
cin >> s;
qe[i].a = (s[0] - '0') * 50 + (s[1] - '0');
qe[i].b = (s[2] - '0') * 50 + (s[3] - '0');
qe[i].v = (s[4] - '0') * 50 + (s[5] - '0');
re[qe[i].v].push_back(i);
// cout << " " << i << " " << qe[i].a << " " << qe[i].b << " " << qe[i].v << endl;
if (qe[i].v == 0)
{
if (qe[i].a == qe[i].b) Ans[i] = 1;
else Ans[i] = 0;
}
}
// cout << "!!" << endl;
}
void dfs(int x)
{
cnt++;
low[x] = dfn[x] = cnt;
q.push(x);
for (int i = 0; i < v[x].size(); i++)
{
int y = v[x][i];
// cout << x << " ^^ " << y << " " << endl;
if (!dfn[y])
{
dfs(y);
low[x] = min(low[x], low[y]);
}
else if (!cl[y]) low[x] = min(low[x], dfn[y]);
}
// cout << " " << x << " " << low[x] << " " << dfn[x] << endl;
if (low[x] == dfn[x])
{
tot++;
// cout << "tarjan " << x << " " << tot << " :" << endl;
while (!q.empty())
{
int t = q.top();
q.pop();
cl[t] = tot;
// cout << "!! " << t << endl;
if (t == x) break;
}
}
}
void perform()
{
for (int i = 1; i <= l; i++)
{
// cout << i << " : " << endl;
for (int j = 0; j < jb[i].size(); j++)
{
int x = jb[i][j].first, y = jb[i][j].second;
if (x == y) continue;
if (!pd[x][y]) v[x].push_back(y), pd[x][y] = true;
// cout << "jb " << x << " " << y << endl;
}
for (int j = 1; j <= n; j++)
{
dfn[j] = low[j] = 0;
cl[j] = tp[j] = 0;
}
tot = 0;
cnt = 0;
while (!qh.empty()) qh.pop();
while (!q.empty()) q.pop();
for (int j = 1; j <= n; j++)
{
if (!dfn[j]) dfs(j);
}
// cout << " !!" << endl;
// cout << endl;
// cout << i << " : " << endl;
for (int j = 1; j <= n; j++)
{
// cout << j << " " << cl[j] << " " << endl;
for (int k = 0; k < v[j].size(); k++)
{
int y = v[j][k];
if (cl[j] == cl[y]) continue;
// cout << " jb " << cl[j] << " " << cl[y] << endl;
vg[cl[j]].push_back(cl[y]);
tp[cl[y]]++;
}
}
for (int j = 1; j <= tot; j++)
{
as[j].reset();
as[j][j] = 1;
}
for (int j = 1; j <= tot; j++)
{
if (tp[j] == 0) qh.push(j);
}
while (!qh.empty())
{
int x = qh.front();
qh.pop();
for (int j = 0; j < vg[x].size(); j++)
{
int y = vg[x][j];
tp[y]--;
as[y] |= as[x];
if (tp[y] == 0) qh.push(y);
}
}
for (int j = 0; j < re[i].size(); j++)
{
int x = re[i][j];
int t1 = cl[qe[x].a], t2 = cl[qe[x].b];
// cout << j << " ?? " << t1 << " " << t2 << " " << x << endl;
if (as[t2][t1]) Ans[x] = 1;
else Ans[x] = 0;
}
}
}
int main()
{
int T;
read(T);
while (T > 0)
{
T--;
prepare();
perform();
for (int i = 1; i <= qu; i++)
{
cout << Ans[i];
}
cout << endl;
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 5792kb
input:
2 5 2 4 0305040201 0404040404 030300 020500 050102 020501 6 2 4 030603010601 010203060504 030202 060402 050602 060401
output:
1011 0100
result:
ok 2 lines
Test #2:
score: 0
Accepted
time: 0ms
memory: 8108kb
input:
1 3 3 6 020202 030301 030201 020102 030203 010201 010303 020303 010202
output:
010101
result:
ok single line: '010101'
Test #3:
score: 0
Accepted
time: 143ms
memory: 6224kb
input:
200 10 10 5000 01060:04020305080709 0103070:060204050908 09070503080401060:02 050308010204090:0607 03010502040607080:09 03080109020504060:07 06050:09040302080107 07080305010409060:02 030809010:0204060507 0:060908070201050304 060700 090:03 09080: 070405 010703 0:0100 080601 030600 070206 0:0:09 08040...
output:
011110001101101111111111111111111101111111110111011110110110111011010111111111111111111101111111111110111111110111111111111101111111111110111111111111111111110001100111111111111111111111111011101111111111111111111111111111111111111111011011110100111110111111110111111100111111101110111111111101111110...
result:
ok 200 lines
Test #4:
score: 0
Accepted
time: 152ms
memory: 24064kb
input:
1 2000 1 1000000 M=:]A@8UAY7W2JJ4KEHIA[HSCQ1ENSC`JXR;F3PJ:_@41P9Z=9HR8P<<:DUXRR9^WOQFL?NZP6S@=J0^WE32=6;\U0?88]Q_RNPUMT6YU<4<S]H?:7OCQYOT4YAV1^764ENWSDBED>M7A:BI>KSIR48JQ9B=N\5T3N4A2aF0@>3TI81<G7;YE>W`NMP<:IT4CI3D0=GZC3I\CLQJQBA9BDIS9SAM55KaVA<Z@D=>:Y?CQHUQ5U3a6UVI8OKX9_FAF^7=5M85;<0;8YPAM<7Z7PP7A=N...
output:
000101000101100010001000000010010110000001000001001100000000010000100001000000101100000000010000001000000001110000010110100000111100100000001000000000011001010001000001001000100000000100011001100110010000010000101100000011111000000010000101010010000000010101000001010111100000100000000000000101000100...
result:
ok single line: '000101000101100010001000000010...0101000101000000000010101001000'
Test #5:
score: -100
Time Limit Exceeded
input:
1 2000 2000 1000000 FVAaH7GRPO;_11Da5J18@3SMG==\G8E8S^6:M4L0JH>MN5IXT>2<7WJ3U8LVJS=;;3F13>0D0>VOIIU@EPHG6ABL6;K?T1PXDERLG07]5C9^GDKG<SBMIW;`4W8P3=469TIPKH0O34523_J5C2MJ17D25Z@=K8H@M>WK<CMK7EO]BPD7B6AW741J5YIHIa1:ERSG>L3N2^F3<4F`DLE@2AA5=8GZK6:192FB736[WMV7:^DA2C:<LK040VJBM3M]WXU50`407TR_?PLF@5VL7OSL...