Square

Time Limit : 10000/5000ms (Java/Other)   Memory Limit : 65536/32768K (Java/Other)
Total Submission(s) : 20   Accepted Submission(s) : 12

Font: Times New Roman | Verdana | Georgia

Font Size: ← →

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

Source

University of Waterloo Local Contest 2002.09.21

此题需要优化时间,避免超时。。优化时间技巧可以学习。。。。。。。。。

 #include <stdio.h>
#include<string.h>
int a[];
int vist[];
int sum;
int l;
int n;
int flag;
void Dfs(int t, int len, int index)
{ if (t == )
{
flag = ;
return ;
} if (len == l)
{
Dfs(t + , , );
if (flag)//优化时间
{
return ;
}
} for (int i = index; i < n; i++)//从index开始优化时间
{
if (vist[i]== && a[i] + len <= l)
{
vist[i] = ;
Dfs(t, a[i] + len, i + );
if (flag)//优化时间
{
return;
}
vist[i] = ;
}
}
} int main()
{
int i,t;
scanf("%d", &t);
while (t--)
{ sum = ;
scanf("%d", &n);
for (int i = ; i < n; i++)
{
scanf("%d", &a[i]);
sum += a[i];
} if (sum % != )//简答的优化
{
puts("no");
continue;
} l = sum / ; for (i = ; i < n; i++)//有比边长大的边就不行
{
if (a[i] > l)
{
break;
}
}
if (i != n)
{
puts("no");
continue;
}
memset(vist, , sizeof(vist));
flag = ;
Dfs(, , );
if (flag)
{
puts("yes");
}
else
{
puts("no");
}
}
return ;
}

最新文章

  1. 分布式系统理论进阶 - Raft、Zab
  2. 重写类的Equals以及重写Linq下的Distinct方法
  3. 修改Tomcat可支持get形式url长度
  4. linux命令合集
  5. 快捷设置IE代理小工具
  6. Volley的三种基本用法StringRequest的Get和post用法以及JsonObjectRequest
  7. cocos2d-x 2.2.3 创建项目的方法
  8. 关于自定义jar包(tomcat)的添加
  9. 原生js封装cookie获取、设置及删除
  10. centos上 小程序部署 nginx+https+ssL 提示错误:对应的服务器 TLS 为 TLS 1.0 ,小程序要求的 TLS 版本必须大于等于 1.2
  11. HDU5773-The All-purpose Zero-多校#41010-最长上升子序列问题
  12. docker-compose 手工指定容器IP
  13. 使用命令行打包 nuget 包
  14. 10、java初始化顺序
  15. 简单理解SNAT回流中的概念:路由器怎么知道外网返回的数据是局域网中哪台主机的
  16. iOS活动倒计时的两种实现方式
  17. Docker 容器内配置Tomcat manager 远程控制
  18. 浅谈 django Models中的跨表
  19. 可编辑的el-table表格,结合input输入,upload文件上传的表格
  20. python学习笔记(1)----python安装

热门文章

  1. OC 消息传递机制
  2. js控制文本框输入数字和小数点等
  3. java新手笔记6 示例for
  4. 输出图像到文件 imwrite()[OpenCV 笔记7]
  5. (zzuli)1907 小火山的宝藏收益
  6. linux 下串口的配置
  7. ASP.NET MVC5 easyui 之 treegrid 初用记录
  8. xp 下卸载 硬盘安装的 ubuntu (本人的悲伤史)
  9. c#NPOI导出
  10. grunt-mac上安装运行构建工具的总结(一)