参考资料 https://blog.csdn.net/tgop_knight/article/details/44539555 https://blog.csdn.net/wxjor/article/details/79512079 https://www.luogu.com.cn/blog/Qiu ...
分类:
其他好文 时间:
2020-10-18 09:42:59
阅读次数:
12
题目如下: Given an array nums, you are allowed to choose one element of nums and change it by any value in one move. Return the minimum difference between ...
分类:
其他好文 时间:
2020-09-17 22:48:12
阅读次数:
35
地址 https://leetcode-cn.com/problems/can-convert-string-in-k-moves/ 给你两个字符串 s 和 t ,你的目标是在 k 次操作以内把字符串 s 转变成 t 。 在第 i 次操作时(1 <= i <= k),你可以选择进行如下操作: 选择字 ...
分类:
其他好文 时间:
2020-08-09 19:11:19
阅读次数:
74
title: NEU_Train_Camp_2020_搜索和简单图论 date: 2020-07-05 22:38:11 tags: c++ categories: New cover: 搜索和简单图论 A - Knight Moves HDU 1372 每组数据输入两个坐标,(a-h)代表列,(1 ...
分类:
其他好文 时间:
2020-07-24 09:31:39
阅读次数:
102
We have a wooden plank of the length n units. Some ants are walking on the plank, each ant moves with speed 1 unit per second. Some of the ants move t ...
分类:
其他好文 时间:
2020-07-07 10:21:05
阅读次数:
78
We have a wooden plank of the length n units. Some ants are walking on the plank, each ant moves with speed 1 unit per second. Some of the ants move t ...
分类:
其他好文 时间:
2020-07-05 13:12:51
阅读次数:
66
The abstract provides a summary of the thesis and often contains the following moves in this order: 1. background to the thesis 2. purpose of the thes ...
分类:
其他好文 时间:
2020-05-14 12:46:10
阅读次数:
74
本文翻译自Google工程师/面试官Alex Golec的文章:Google Interview Questions Deconstructed: The Knight’s Dialer; 来源:实验楼,翻译:实验楼扫地阿姨 原文:https://medium.com/@alexgolec/goog ...
分类:
其他好文 时间:
2020-04-01 17:48:58
阅读次数:
89
题目解析:有k个鸡蛋,N层楼,求最少的moves可以确定F的大小.题目中暗含着1-N是有序的,如果第i层鸡蛋没破,那F值肯定在[i,n]层,如果破了,那F值就在[0,i-1]层; 解法一:求最小值,动态规划;顺着题目想dp[K][N]的最小值,假设在i层扔下,如果鸡蛋破了,那么F肯定[0, i-1] ...
分类:
其他好文 时间:
2020-03-29 13:07:36
阅读次数:
85
Given a knight in a chessboard (a binary matrix with 0 as empty and 1 as barrier) with a source position, find the shortest path to a destination posi ...
分类:
其他好文 时间:
2020-03-20 13:06:50
阅读次数:
61