首页 > TAG信息列表 > curY

CF935B Fafa and the Gates 题解

Content 一个动点 \(F\) 一开始在平面直角坐标系上原点的位置,随后它会移动 \(n\) 次,每次只能向上走或者向右走 \(1\) 个单位,求经过直线 \(y=x\) 的次数。 数据范围:\(1\leqslant n\leqslant 10^5\)。 Solution 注意,这里是经过直线 \(y=x\) 的次数而不是到达直线 \(y=x\) 的次数!比如

LeetCode - Surrounded Regions

Given a 2D board containing 'X' and 'O' (the letter O), capture all regions surrounded by 'X'. A region is captured by flipping all 'O's into 'X's in that surrounded region. Example: X X X X X O O X X X

Security Guards (Gym - 101954B)( bfs + 打表 )

题意及思路 题目主要是讲先给出所有guard的位置,再给出所有incidents的位置,求出guard到达每个incident处最小的steps,其中guard每次可以向四周8个方向移动。 思路:对于每个guard使用bfs遍历它周围的点,算出相应的点到它的距离。 AC代码 #include<bits/stdc++.h> using namespace std;

touchmove时鼠标点击的位置调整

平时用H5做小游戏时,经常会用到 addEventListener("touchmove",touch),在鼠标或手势 移动的时候,如果遇到比较大的素材,需要调整鼠标或手势在素材上的位置。 只需要在touches获取的值进行加减即可,再把改变后的值进行渲染 curX = e.touches[0].pageX - 90; //改变移动是