zoj 3203 Light Bulb

简介:

题目连接: http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=3366
题目大意:题意:
如图,人左右走动,求影子L的最长长度。

目录
相关文章
|
9月前
UVa837 - Light and Transparencies(排序)
UVa837 - Light and Transparencies(排序)
40 0
AtCoder Beginner Contest 222 E - Red and Blue Tree(dfs dp)
AtCoder Beginner Contest 222 E - Red and Blue Tree(dfs dp)
93 0
HDOJ(HDU) 2162 Add ‘em(求和)
HDOJ(HDU) 2162 Add ‘em(求和)
60 0
|
机器学习/深度学习
HDOJ/HDU 1556 Color the ball(树状数组)
HDOJ/HDU 1556 Color the ball(树状数组)
86 0
HDOJ 1312 (POJ 1979) Red and Black
HDOJ 1312 (POJ 1979) Red and Black
94 0
ZOJ1067 Color Me Less
复制代码#include <iostream> #include <cmath> #include <limits> using namespace std; const int MAXSIZE = 100; int pos[100];//记录对应的最小值所在位置 struct RGB {//颜.
1435 0