QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#573837 | #9319. Bull Farm | masttf | WA | 0ms | 3804kb | C++20 | 2.8kb | 2024-09-18 20:05:47 | 2024-09-18 20:05:48 |
Judging History
answer
#include<bits/stdc++.h>
#define int long long
using namespace std;
#define dbg(x...) \
do { \
cout << #x << " -> "; \
err(x); \
} while (0)
void err() {
cout<<endl<<endl;
}
template<class T, class... Ts>
void err(T arg, Ts ... args) {
cout<<fixed<<setprecision(10)<<arg<< ' ';
err(args...);
}
constexpr int maxn = 2e3 + 5;
void solve(){
int n, l, q; cin >> n >> l >> q;
vector t(l + 1, vector<int> (n + 1));
for(int i = 1; i <= l; i++){
string s; cin >> s;
for(int j = 0; j < 2 * n; j += 2){
t[i][j / 2 + 1] = (s[j] - 48) * 50 + s[j + 1] - 48;
}
}
vector Q(l + 1, vector<array<int, 3>>());
for(int i = 1; i <= q; i++){
string s; cin >> s;
array<int, 3> res;
for(int j = 0; j < 6; j += 2){
res[j / 2] = (s[j] - 48) * 50 + s[j + 1] - 48;
}
Q[res[2]].push_back({res[0], res[1], i});
//dbg(res[0], res[1], res[2]);
}
// for(int i = 1; i <= l; i++){
// for(int j = 1; j <= n; j++){
// cout << t[i][j] << ' ';
// }
// cout << '\n';
// }
// cout << endl;
vector a(l + 1, vector<pair<int, int>>());
for(int i = 1; i <= l; i++){
vector<int>cnt(n + 1);
int lim = 0;
for(int j = 1; j <= n; j++){
if(lim == 2)break;
cnt[t[i][j]]++;
if(cnt[t[i][j]] == 2)lim++;
else if(cnt[t[i][j]] >= 3)lim = 2;
}
if(lim == 0){
for(int j = 1; j <= n; j++){
if(j == t[i][j])continue;
a[i].push_back({j, t[i][j]});
}
}else if(lim == 1){
int now = 1;
while(cnt[now])now++;
for(int j = 1; j <= n; j++){
if(cnt[t[i][j]] == 2){
a[i].push_back({j, now});
}
}
}
}
vector<int> ans(q + 1);
vector<bitset<maxn>> res(n + 1);
vector<bitset<maxn>> f(n + 1);
for(int i = 1; i <= n; i++){
res[i][i] = 1;
}
for(int i = 0; i <= l; i++){
for(auto [u, v] : a[i]){
bitset<maxn> r1 = f[v];
r1.flip();
r1 |= f[u];
bitset<maxn> r2 = res[u];
r2.flip();
r2 |= res[v];
int pos = 0;
int d = r1._Find_next(pos);
while(d <= n){
res[d] |= res[v];
pos = d;
d = r1._Find_next(pos);
}
pos = 0;
d = r2._Find_next(pos);
while(d <= n){
f[d] |= f[u];
pos = d;
d = r2._Find_next(pos);
}
}
for(auto [a, b, id] : Q[i]){
ans[id] = res[a][b];
}
}
for(int i = 1; i <= q; i++)cout << ans[i];
cout << '\n';
return ;
}
signed main(){
ios::sync_with_stdio(false);
cin.tie(0);
int t=1;cin>>t;
while(t--)solve();
return 0;
}
详细
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3804kb
input:
2 5 2 4 0305040201 0404040404 030300 020500 050102 020501 6 2 4 030603010601 010203060504 030202 060402 050602 060401
output:
1011 0110
result:
wrong answer 2nd lines differ - expected: '0100', found: '0110'