hdu 1518 Square 【dfs】
2366 단어 DFS
Time Limit: 10000/5000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 19311 Accepted Submission(s): 6067 Problem Description Given a set of sticks of various lengths, is it possible to join them end-to-end to form a square? Input The first line of input contains N, the number of test cases. Each test case begins with an integer 4 <= M <= 20, the number of sticks. M integers follow; each gives the length of a stick - an integer between 1 and 10,000. Output For each case, output a line containing "yes" if is is possible to form a square; otherwise output "no".
Sample input
3
4 1 1 1 1
5 10 20 30 40 50
8 1 7 2 6 4 4 3 5
Sample output
yes
no
yes
제목:입력 한 m 개수 에 대해 한 번 의 통합(수 를 더 할 수 있 음)을 거 쳐 정사각형 이 될 수 있 으 면 yes 를 출력 합 니 다.그렇지 않 으 면 no 를 출력 합 니 다.
분석:심층 검색,종료 조건 은 num==4 입 니 다.이 조건 이 성립 되면 yes 를 출력 합 니 다.그렇지 않 으 면 출력 no.
코드 는 다음 과 같 습 니 다:
#include
#include
#include
using namespace std;
const int maxn = 101;
int a[maxn],vis[maxn],n,sum,flag,psum;
void DFS(int num,int len,int pos)
{
if(num == 4) // , =4, return
{
flag = 1;
return ;
}
if(len == psum) // , ,len pos 0
{
DFS(num+1,0,0);
if(flag)
return;
}
for(int i=pos;i>t;
while(t--)
{
memset(vis,0,sizeof vis);
sum = 0;
flag = 0;
cin>>n;
for(int i=0;i>a[i];
sum += a[i];
}
if(sum%4 != 0) // 4 , ,
{
puts("no");
continue;
}
psum = sum/4;
for(int i=0;i psum) // ,
{
flag = 1;
break;
}
}
if(flag == 1)
{
puts("no");
continue;
}
DFS(0,0,0);
if(flag == 1)
puts("yes");
else
puts("no");
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[BOJ] 5568 카드 놓기아이디어 Level이 0일 때, 즉 아직 카드를 고르지 않았을 때 StringBuilder를 생성하고 sb에 고른 카드를 담도록 하였다. 이후 해당 노드 탐색을 종료하면 sb에 담은 카드를 삭제해 주었다....
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.