首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
thenbsp专题
HDOJnbsp;nbsp;1010nbsp;nbsp;nbsp;Tempternbsp;ofnbsp;thenbsp;Bone
题目:http://acm.hdu.edu.cn/showproblem.php?pid=1010 #include <stdio.h> #include <math.h> char map[10][10]; //记住数组不能为7 int n,m,t; int di,dj; //门的位置 bool escape; //判断是否成功的标志 int dir[4][2
阅读更多...
HDOJnbsp;nbsp;1709nbsp;nbsp;nbsp;Thenbsp;Balance
题目:http://acm.hdu.edu.cn/showproblem.php?pid=1709 题目大意为由这些砝码,看不能表示的最小的重量是多少 则和个体问题在于天平的每个砝码都可以放在天平的两边 #include<stdio.h> #include<math.h> #include<stdlib.h> int c1[10005],c2[10005]; int a[105],ans[100
阅读更多...
HDUnbsp;4251nbsp;Thenbsp;Famousnbsp;ICPCnbsp;Teamnbsp;Ag…
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4251 看了人家的结题报告才知道有划分树这种东东~ ~ ~ 划分树 划分树是一种基于线段树的数据结构。主要用于快速求出(在log(n)的时间复杂度内)序列区间的第k大值 此题是模板题,就不说各种废话了, 代码: #include<stdio.h> #include<stdlib.h> #def
阅读更多...