UVa1252 Twenty Questions
하지만 이 문제는 내가 이해할 수 없는 부분이 있다. 질문할 때 순서는 중요하지 않을 것이다. 그러나 내가 인위적으로 질문 순서를 정하면 WA가 된다.(코드 주석 섹션 참조)
#include <iostream>
#include <stdio.h>
#include <cmath>
#include <algorithm>
#include <iomanip>
#include <cstdlib>
#include <string>
#include <memory.h>
#include <vector>
#include <queue>
#include <stack>
#include <map>
#include <set>
#include <ctype.h>
#define INF 10000000
#define ll long long
#define min3(a,b,c) min(a,min(b,c))
#define max3(a,b,c) max(a,max(b,c))
#define MAXN 100010
using namespace std;
int obj[130];
int m,n;
int strtobit(char* str){
int num=0;
for(int i=0;i<m;i++){
if(str[i]=='1')num+=(1<<(m-i-1));
}
return num;
}
int dp[3000][3000];
int fun(int s,int a){
if(dp[s][a]!=-1)return dp[s][a];
int cnt=0;
for(int i=1;i<=n;i++){
if( (obj[i]&s)==a)cnt++;
}
if(cnt<=1){
dp[s][a]=0;
return 0;
}
int re=INF;
int k=m;
/*for(k=0;k<m;k++){
if( s&(1<<k) ){
break;
}
}*/
while(k--){
if( s&(1<<k) ) continue;
int t=1<<k;
re=min( re , max(fun(s^t,a^t),fun(s^t,a))+1 );
}
dp[s][a]=re;
return re;
}
int main(){
while(cin>>m>>n){
if(m==0&&n==0)break;
memset(dp,-1,sizeof(dp));
char str[15];
for(int i=1;i<=n;i++){
cin>>str;
obj[i]=strtobit(str);
}
cout<<fun(0,0)<<endl;
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
【경쟁 프로 전형적인 90문】008의 해설(python)의 해설 기사입니다. 해설의 이미지를 봐도 모르는 (이해력이 부족한) 것이 많이 있었으므로, 나중에 다시 풀었을 때에 확인할 수 있도록 정리했습니다. ※순차적으로, 모든 문제의 해설 기사를 들어갈 예정입니다. 문자열...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.