# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
257960 | igm_igm | 질문 (CEOI14_question_grader) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef int64_t llo;
#define mp make_pair
#define pb push_back
#define a first
#define b second
int val[921];
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int tt;
cin>>tt;
int co=0;
for(int i=0;i<(1<<12);i++){
if(__builtin_popcount(i)==6){
co+=1;
if(co>920){
break;
}
val[co]=i;
}
}
if(tt==1){
int n,t;
cin>>n>>t;
while(t--){
int aa,bb;
cin>>aa>>bb;
int pp=0;
aa=val[aa];
bb=val[bb];
for(int i=0;i<12;i++){
if(((1<<i)&aa)){
if(((1<<i)&bb)==0){
cout<<i+1<<endl;
break;
}
}
}
}
}
else{
int n,t;
cin>>n>>t;
while(t--){
int aa,bb;
cin>>aa>>bb;
int pp=0;
aa=val[aa];
if((aa&(1<<(bb-1)))){
cout<<"yes"<<endl;
}
else{
cout<<"no"<<endl;
}
}
}
return 0;
}