-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHuge Boxes of Animal Toys.cpp
86 lines (81 loc) · 2.14 KB
/
Huge Boxes of Animal Toys.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
// https://codeforces.com/problemset/problem/1425/H
// Concept used : Constructive algorithm
// 299143BT
#include<bits/stdc++.h>
#define ll long long int
#define MOD 1000000007
#define pi 3.1415926535
#define fi first
#define se second
#define vll vector<ll>
#define vpll vector<pair <ll,ll> >
#define vvll vector< vll >
#define str string
#define umap unordered_map
#define uset unordered_set
#define rep(i,n) for(ll i=0;i<n;i++)
#define repA(i,s,n) for(ll i=s;i<=n;i++)
#define repD(i,s,n) for(ll i=s;i>=n;i--)
#define pb push_back
#define mp make_pair
#define lb lower_bound
#define ub upper_bound
#define elif else if
#define fast ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
#define ALL(v) v.begin(),v.end()
#define sortA(v) sort(ALL(v))
#define sortD(v) sort(ALL(v),greater <ll> ())
#define print(v) for(auto itr:v) cout<<*itr<<" ";
#define sz size()
#define nl cout<<"\n";
using namespace std;
ll factorial(ll n){return (n==1||n==0)?1:n*factorial(n-1);}
ll power(ll x,ll y){ll res=1;while(y>0){if(y&1)res=res*x;y=y>>1;x=x*x;}return res;}
ll powerMod(ll x,ll y,ll m){if(y==0)return 1;ll p=powerMod(x,y/2,m)%m;p=(p*p)%m;return (y%2==0)?p:(x*p)%m;}
ll modInverse(ll a,ll m){return powerMod(a,m-2,m);}
ll gcd(ll a,ll b){if(a==0){return b;}else if(b==0){return a;}else{if(a>b){return gcd(a%b,b);}else{return gcd(b%a,a);}}}
void pre(){
}
void solve(){
ll a=0,b=0,c=0,d=0;
cin>>a>>b>>c>>d;
ll f1=0,f2=0,f3=0,f4=0;
if(a+b+c+d==1){
if(a==1) f1=1;
elif(b==1) f2=1;
elif(c==1) f3=1;
else f4=1;
}
else{
if((a+b)%2){
f3=f4=0;
f1=1;
f2=1;
if(a==0 && d==0) f1=0;
if(b==0 && c==0) f2=0;
}
else{
f1=f2=0;
f3=1;
f4=1;
if(d==0 && a==0) f4=0;
if(b==0 && c==0) f3=0;
}
}
if(f1) cout<<"Ya ";
else cout<<"Tidak ";
if(f2) cout<<"Ya ";
else cout<<"Tidak ";
if(f3) cout<<"Ya ";
else cout<<"Tidak ";
if(f4) cout<<"Ya ";
else cout<<"Tidak ";
nl
}
int main(){
ll t=1;
cin>>t;
pre();
while(t--) solve();
return 0;
}