QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#567845 | #9310. Permutation Counting 4 | 15H | WA | 171ms | 99268kb | C++14 | 1.9kb | 2024-09-16 14:12:56 | 2024-09-16 14:12:57 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define fi first
#define se second
#define pb push_back
#define pii pair<int,int>
#define desc greater<int>
#define sz(v) (int)v.size()
#define sc(a) cout<<a<<endl;return
#define all(v) v.begin(),v.end()
#define popcount __builtin_popcount
#define mem(a,v) memset(a,(v),sizeof(a))
#define rep(i,a,b) for(int i=a;i<=b;i++)
#define rep_(i,a,b) for(int i=a;i>=b;i--)
#define de(a) cerr<<"DEBUG:"<<(a)<<'\n'
#define de2(a,b) cerr<<"DEBUG:"<<(a)<<' '<<(b)<<'\n'
#define SET(a) cout<<fixed<<setprecision((a))
#define Mint(x) x=(x%mod+mod)%mod
#define endl '\n'
#define eps 1e-6
#define PI acos(-1)
const int inf = INT_MAX;
const ll INF = 0x3f3f3f3f3f3f3f3f;
ll gcd(ll a,ll b) {return b==0?a:gcd(b,a%b);}
bool isprime(ll x){for(ll i=2;i*i<=x;i++){if(x%i==0) return 0;}return 1;}
ll qpow(ll a,ll b,ll p=INF){ll s=1;while(b){if(b&1)s=(s*a)%p;b>>=1;a=(a*a)%p;}return s;}
const int N = 2e6+10,M=N;
const int mod=998244353;
// typedef modint<mod> mint;
// #define int ll
set<int> g[N];
int vis[N];
bool dfs(int x,int fa){
vis[x]=1;
for(int y : g[x]){
if(y==fa) continue;
if(vis[y]) return true;
if(dfs(y,x)) return true;
}
return false;
}
void solve(){
int rt=-1,f=-1,l,r,n;
cin>>n;
rep(i,1,n){
cin>>l>>r;
if(rt==-1) rt=l;
if(g[l].count(r+1)){
f=0;
}
g[l].insert(r+1);
g[r+1].insert(l);
}
if(f==0){
cout<<"0\n";
}else{
cout<<!dfs(rt,-1)<<endl;
}
rep(i,1,n+1) g[i].clear(),vis[i]=false;
}
signed main(){
ios::sync_with_stdio(false),cin.tie(0),cout.tie(0);
// freopen(".in","r",stdin);
// freopen(".out","w",stdout);
int T = 1;
cin >> T;
rep(_,1,T){
// cout<<"Case #"<<_<<": ";
solve();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 3ms
memory: 97492kb
input:
4 5 1 2 1 5 1 2 1 2 2 2 5 1 1 2 4 2 3 5 5 3 4 5 3 5 1 2 3 4 3 5 3 3 5 1 5 1 4 4 5 5 5 1 2
output:
0 1 0 0
result:
ok 4 tokens
Test #2:
score: -100
Wrong Answer
time: 171ms
memory: 99268kb
input:
66725 14 7 7 4 6 7 8 8 13 2 13 6 13 6 10 14 14 1 10 9 11 7 9 3 8 4 12 5 12 12 2 6 3 6 7 11 2 5 1 1 6 12 8 12 2 3 7 9 7 8 1 10 1 4 10 4 8 4 4 6 10 9 10 2 3 2 7 1 3 3 4 2 2 3 10 20 3 12 10 14 19 20 19 20 1 9 7 9 13 16 17 17 16 18 2 11 5 19 6 17 11 17 3 6 3 11 7 20 8 17 3 18 10 15 9 20 16 5 10 2 10 2 1...
output:
1 1 0 0 1 0 1 1 0 1 1 0 0 0 0 0 1 0 1 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 1 1 1 1 1 0 1 0 1 1 1 1 1 1 1 1 0 1 1 0 0 0 0 0 0 1 0 1 1 0 1 1 1 0 1 0 1 0 0 0 1 1 1 0 0 1 1 1 1 0 1 1 1 1 1 1 1 0 1 0 0 1 1 0 0 1 1 0 0 1 1 1 1 1 1 0 0 1 1 1 0 0 1 1 0 0 1 0 1 0 1 0 1 0 0 1 0 0 0 0 0 1 1 1 1 1 0 0 0 1 0 0 1 0 1 1 ...
result:
wrong answer 130th words differ - expected: '0', found: '1'