QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#601445 | #9319. Bull Farm | Sakuyamaid | WA | 0ms | 3592kb | C++20 | 6.6kb | 2024-09-30 00:02:53 | 2024-09-30 00:02:53 |
Judging History
answer
// buxiangwanla
// 你紫名觉得是我的锅,那就是我的锅,为什么你知道吗?因为紫名说的话,就像是一个癌症晚期患者说的话一样。
// 他都已经这样了,你为什么不顺从他呢?你总要给人最后一段时间一个好的回忆吧,最后的时光里。
// 因为紫名这个段位很尴尬,紫名橙名再往上一点,grandmaster,可能说,欸,有点实力,能操作一下。
// 紫名往下,绿名,蓝名,啊,人家是纯属玩游戏的,因为太垃圾了,自己也知道自己没什么实力。
// 但紫名,上不去下不来的这个段位,他觉得,蓝名的人不配跟他一起玩儿,对吧?蓝名是最垃圾的。
// 但是呢他想上去,他又上不去,所以这个分段是最尴尬的,没办法,卡在这里了。
// 想操作,又操作不起来,掉下去吧,他又觉得不值得,对吧,我好不容易从蓝名打到紫名了,我为什么还要掉下去呢?
// 这个人说优越狗越说越起劲,为什么他会这么说?因为他是紫名。
// 他觉得你比我段位高,你说的任何话都是优越,我并不管你说的有没有道理。
// 我紫名,我最猛,我WF2017我上我能夺冠,那打比赛全是sb。你比我段位高你说话就是放屁,这就是这种人的想法。但是呢,他的想法是对的,为什么呢?
// 因为他癌症晚期。没办法,我同意,对不起,我优越了。可能是我膨胀了,不好意思啊,我膨胀了。我紫名是没操作,难道我就看不懂谁背锅吗?
// 不是,如果你看得懂的话,就不会在这里抬杠了,对吧。
// If you Blue Name think it's my fault, it's my fault. Do you know why? Because what Blue Name says is like something a terminal cancer patient would say.
// He's already like that. Why don't you just go along with it? You always have to give someone a good memory for the last period of time, right? In the last time.
// Because the blue name of this rating is very awkward, blue name purple name a little further up, master, may say, hey, a little strength, can operate a little.
// Blue name down, green name, ah, people are purely playing the game, because it is too trash, they also know that they do not have much strength.
// But the blue name, can't go up or down in this rating, he thinks, the green name of the person does not deserve to play with him, right? Green name is the most trash.
// But he wants to go up, he can not go up, so this rating is the most embarrassing, no way, stuck here.
// I want to solve, but I can not solve the problems, fall down, he also think it is not worth it, right, it is not easy for me to fight from the green name to the blue name, why do I have to fall down?
// This person said superior dog the more he said the more energized, why would he say so? Because he's blue.
// He thinks you are higher than me, anything you say is superior, I don't care if what you say makes sense or not.
// I'm not sure if there's any truth in what you're saying, but I'm not sure if there's any truth in what you're saying, and I'm not sure if there's any truth in what you're saying, and I'm not sure if there's any truth in what you're saying. But then, his idea is right, why?
// Because he has terminal cancer. No way, I agree. I'm sorry, I'm superior. Maybe I'm bloated. I'm sorry, I'm bloated. My blue name is no operation. Can't I see who's taking the fall?
// No, if you could see it, you wouldn't be here carrying the can, would you.
//
#include <bits/stdc++.h>
using namespace std;
typedef unsigned long long ULL;
using LL = long long;
mt19937_64 rd(time(0));
constexpr int N = 2e3 + 5, mod = 998244353;
constexpr double eps = 1e-8;
//#pragma GCC optimize("Ofast,no-stack-protector,unroll-loops,fast-math")
//#pragma GCC target("sse,sse2,sse3,ssse3,sse4.1,sse4.2,avx,avx2,popcnt,tune=native")
#define fi first
#define se second
#define int long long
#define lowbit(x) (x & (-x))
#define PII pair<int, int>
#define mid ((l + r) >> 1)
int min(int a, int b) { return a < b ? a : b; }
int max(int a, int b) { return a > b ? a : b; }
int ksm(int a, int b){
a %= mod;
int res = 1;
while(b){
if(b & 1)res = res * a % mod;
a = a * a % mod;
b >>= 1;
}
return res;
}
int n, m, l, q;
string s;
void Sakuya()
{
cin >> n >> l >> q;
vector t(l + 1, vector<int>(n + 1));
for(int i = 1; i <= l; ++ i){
cin >> s;
for(int j = 0; j < 2 * n; j += 2){
t[i][j / 2 + 1] = (s[j] - '0') * 10 + (s[j + 1] - '0');
}
}
vector Q(l + 1, vector<tuple<int, int, int>>());
for(int i = 1; i <= q; ++ i){
cin >> s;
vector<int>c(4);
for(int j = 0; j < 6; j += 2){
c[j / 2 + 1] = (s[j] - '0') * 10 + (s[j + 1] - '0');
}
Q[c[3]].emplace_back(c[1], c[2], i);
}
vector a(l + 1, vector<PII>());
for(int i = 1; i <= l; ++ i){
vector<int>din(n + 1);
int flag = 0;
for(int j = 1; j <= n; ++ j){
din[t[i][j]] += 1;
if(din[t[i][j]] == 2){
flag += 1;
}else if(din[t[i][j]] > 2){
flag = 2;
break;
}
}
if(flag == 0){
for(int j = 1; j <= n; ++ j){
if(t[i][j] == j)continue;
a[i].emplace_back(j, t[i][j]);
}
}else if(flag == 1){
int now = 1;
while(din[now])now += 1;
for(int j = 1; j <= n; ++ j){
if(din[j] == 2)a[i].emplace_back(j, now);
}
}else if(flag == 2){
continue;
}
}
vector<bool>ans(q + 1);
vector<bitset<N>>res(n + 1);
vector<bitset<N>>f(n + 1);
for(int i = 1; i <= n; ++ i){
f[i][i] = 1;
res[i][i] = 1;
}
for(int i = 0; i <= l; ++ i){
for(auto [u, v] : a[i]){
bitset<N>r1 = f[v];
r1.flip();
r1 &= f[u];
bitset<N>r2 = res[u];
r2.flip();
r2 &= res[v];
for(int j = r1._Find_first(); j <= n; j = r1._Find_next(j)){
res[j] |= res[v];
}
for(int j = r2._Find_first(); j <= n; j = r2._Find_next(j)){
f[j] |= f[u];
}
}
for(auto [a, b, id] : Q[i]){
ans[id] = res[a][b];
}
}
for(int i = 1; i <= q; ++ i)cout << ans[i];
cout << "\n";
}
signed main()
{
ios::sync_with_stdio(false);
cin.tie(nullptr);
int T;
for (cin >> T; T -- ; )
Sakuya();
}
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 3576kb
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: -100
Wrong Answer
time: 0ms
memory: 3592kb
input:
1 3 3 6 020202 030301 030201 020102 030203 010201 010303 020303 010202
output:
010100
result:
wrong answer 1st lines differ - expected: '010101', found: '010100'