hdu 1518 Square 【dfs】

2366 단어 DFS
제목 링크:http://acm.hdu.edu.cn/showproblem.php?pid=1518
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;
}

좋은 웹페이지 즐겨찾기