QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#621923 | #1869. Power Station of Art | 369Pai | WA | 319ms | 44128kb | C++20 | 1.7kb | 2024-10-08 18:23:36 | 2024-10-08 18:23:38 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N = 1e6 + 5;
int n , m , a[N] , c[N] , b[N] , d[N];
int ta[N] , tb[N] , col[N];
vector<int>g[N] , id;
bool Dfs(int u , int c)
{
bool ok = 1;
col[u] = c;
id.push_back(u);
for(int v : g[u])
{
if(!col[v])ok &= Dfs(v , 3 - c);
else if(c == col[v])ok = 0;
}
return ok;
}
int Solve()
{
cin >> n >> m;
for(int i = 1 ; i <= n ; i++)g[i].clear();
for(int i = 1 ; i <= m ; i++)
{
int u , v; cin >> u >> v;
g[u].push_back(v);
g[v].push_back(u);
}
for(int i = 1 ; i <= n ; i++)
cin >> a[i];
string s; cin >> s;
for(int i = 1 ; i <= n ; i++)
c[i] = s[i - 1] == 'B';
for(int i = 1 ; i <= n ; i++)
cin >> b[i];
cin >> s;
for(int i = 1 ; i <= n ; i++)
d[i] = s[i - 1] == 'B';
for(int i = 1 ; i <= n ; i++)col[i] = 0;
for(int i = 1 ; i <= n ; i++)
if(!col[i])
{
id.clear();
bool is2 = Dfs(i , 1);
if(is2)
{
set<int>sa , sb;
for(int i : id)
{
sa.insert(((col[i] == 1) ^ c[i] ? 1 : -1) * a[i]);
sb.insert(((col[i] == 1) ^ d[i] ? 1 : -1) * b[i]);
}
if(sa != sb)
{
cout << "NO\n";
return 0;
}
}
else
{
int dt = 0;
set<int>sa , sb;
// cerr << "id:";
// for(int i : id)cerr << i << ',';
// cerr << "\n";
for(int i : id)
{
sa.insert(a[i]);
sb.insert(b[i]);
if(c[i])dt++;
if(d[i])dt--;
}
// cerr << dt << " (" << (sa == sb) << ")\n";
if((dt % 2) || sa != sb)
{
cout << "NO\n";
return 0;
}
}
}
cout << "YES\n";
return 0;
}
signed main()
{
ios::sync_with_stdio(0);
cin.tie(0) , cout.tie(0);
int T; cin >> T;
while(T--)Solve();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 3ms
memory: 13888kb
input:
3 2 1 1 2 3 4 RR 4 3 BB 3 2 1 2 2 3 1 1 1 RBR 1 1 1 BBB 3 3 1 2 2 3 3 1 1 1 1 RBR 1 1 1 BBB
output:
YES NO YES
result:
ok 3 lines
Test #2:
score: -100
Wrong Answer
time: 319ms
memory: 44128kb
input:
25054 5 10 4 5 4 2 4 3 4 1 5 2 5 3 5 1 2 3 2 1 3 1 12 2 9 10 7 RRRBB 10 2 9 7 12 RRBRB 1 0 4 R 4 R 8 4 4 3 1 5 8 5 6 5 7 2 11 10 9 6 3 5 RBRBBRBR 7 2 10 11 6 5 3 9 RBRBBRBR 7 4 7 2 5 1 5 6 5 4 12 5 9 14 5 12 12 RRBRBRR 14 12 9 5 12 12 5 RBBRBRB 10 1 4 6 5 3 2 9 7 3 11 11 6 8 RRRBRRBBBR 5 3 2 3 7 9 1...
output:
YES YES YES YES YES YES YES YES YES NO YES NO YES NO NO YES YES YES NO YES NO YES YES NO YES YES NO YES NO YES YES YES YES NO YES YES NO YES YES YES YES YES YES YES YES YES YES YES YES YES YES NO NO YES NO YES YES YES YES NO YES YES YES YES YES YES YES YES YES YES YES YES NO YES YES YES NO YES NO NO...
result:
wrong answer 138th lines differ - expected: 'NO', found: 'YES'