地址 https://vjudge.net/problem/POJ-3050 The cows play the child's game of hopscotch in a non-traditional way. Instead of a linear set of numbered boxes ...
分类:
其他好文 时间:
2021-01-18 11:21:11
阅读次数:
0
题目 : http://poj.org/problem?id=3050 有一个5 5的网格,网格上每个格点有一个数字,从网格任一点出发,可以移动5步,每步可以选择上下左右四个方向,根据沿途格子上的数字可以组成一个6位数,需要得出在这个网格上能够组成多少个不同的6位数。 样例输入 : 1 1 1 1 ...
分类:
其他好文 时间:
2020-01-18 01:18:05
阅读次数:
75
Hopscotch time limit per test 2 seconds time limit per test memory limit per test 256 megabytes memory limit per test input standard input input outpu ...
分类:
其他好文 时间:
2019-10-13 17:22:28
阅读次数:
107
原题 题目链接 题目分析 bfs限制步数后爆搜就行了,答案用set维护(用来去重). 代码 ...
分类:
其他好文 时间:
2019-08-22 22:14:40
阅读次数:
129
bfs 位置+状态 just need to calculate min value(only it is useful), so O(1*x) 挺有趣的一道题。。。 ...
分类:
其他好文 时间:
2019-06-29 23:51:10
阅读次数:
140
Every year the cows hold an event featuring a peculiar version of hopscotch that involves carefully jumping from rock to rock in a river. The exciteme ...
分类:
其他好文 时间:
2019-02-15 22:33:50
阅读次数:
168
传送门: "CF141B Hopscotch" 算法分析: 1. 判断是否在边界上($a|y$),是否在第一、二象限($y 0$) 2. 接着,判断 $y$ 是否比 $a$ 小,$x$是否在第一个正方形内 3. 将$y$减去$a$(删去第一层),$dir=\frac{y}{2a}+1$ 表示其所在的 ...
分类:
其他好文 时间:
2019-02-10 16:25:05
阅读次数:
178
题目链接:http://poj.org/problem?id=3258 River Hopscotch Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 22092 Accepted: 9138 Description Every ...
分类:
其他好文 时间:
2019-02-08 13:08:05
阅读次数:
196
River Hopscotch Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 21939 Accepted: 9081 Description Every year the cows hold an event featurin ...
分类:
其他好文 时间:
2019-01-23 23:28:58
阅读次数:
322
P2855 [USACO06DEC]河跳房子River Hopscotch 二分+贪心 每次二分最小长度,蓝后检查需要去掉的石子数是否超过限制。 1 #include<iostream> 2 #include<cstdio> 3 #include<cstring> 4 #include<algori ...
分类:
其他好文 时间:
2018-11-28 23:43:00
阅读次数:
324