Codeforces - 1463C. Busy Robot (思维)

简介: 笔记

Busy Robot


题意

机器人初始在一数轴上的原点 某时刻接受命令 并朝命令方向前进 每秒前进1距离 在未到达当前命令的终点时 忽略当前时刻的其他命令若机器人[ t i , t i + 1 ]时间内移动到xi位置 视为完成一次指令 (被忽略的命令可能会成功执行)


给出一系列的指令问机器人能完成多少次


思路

记录每次指令的起点 st 和终点 ed 下一次停止的时间 net 上一次接收到可执行命令的时刻las

遍历每个指令 如果当前指令的时刻大于等于 n e t netnet 说明可以执行当前指令 更新net、st、ed、las


否则判断机器人是否能在 [ t i , t i + 1 ] 时间内移动到 x i  位置 具体判断依据为 在 ti时刻到 t i + 1 时刻 机器人是否经过 x i


代码

#include<bits/stdc++.h>
#define INF 0x3f3f3f3f
#define mod 1000000007
using namespace std;
inline int gcd(int a, int b) { return b ? gcd(b, a % b) : a; }
typedef long long LL;
typedef pair<int, int>PII;
const int N = 100100;
int n;
LL tim[N];
LL pos[N];
void solve() {
  cin >> n;
  for (int i = 0; i < n; ++i) {
    cin >> tim[i] >> pos[i];
  }
  tim[n] = 1e10;
  LL net = 0; //下一次停止的时间
  LL st = 0, ed = 0; //一次指令的起点和终点
  LL las = 0; //上一次接收到命令的时间
  LL res = 0;
  for (int i = 0; i < n; ++i) {
    if (tim[i] >= net) {
      net = tim[i] + abs(pos[i] - ed);
      st = ed, ed = pos[i];
      las = i;
      if (net <= tim[i + 1])
        res++;
    }
    else {
      if (st >= ed) {
        int y = st - (tim[i] - tim[las]);
        int x = max(ed, st - (tim[i + 1] - tim[las]));
        if (pos[i] >= x && pos[i] <= y)res++;
      }
      else {
        int x = st + (tim[i] - tim[las]);
        int y = min(ed, st + tim[i + 1] - tim[las]);
        if (pos[i] >= x && pos[i] <= y)res++;
      }
    }
  }
  cout << res << endl;
}
int main() {
  int t; cin >> t;
  while (t--)
    solve();
  return 0;
}


目录
相关文章
|
人工智能
Codeforces-Adding Powers(进制问题+思维)
Codeforces-Adding Powers(进制问题+思维)
138 0
Mad Scientist (纯模拟题)
Mad Scientist 题目描述 Farmer John’s cousin Ben happens to be a mad scientist. Normally, this creates a good bit of friction at family gatherings, but it can occasionally be helpful, especially when Farmer John finds himself facing unique and unusual problems with his cows.
147 0
大声说出你对女神的爱!Geek is A choice. Girls make difference.
女王节来了,我们采访了来自于阿里云智能一线的6位geek girl,用两天的时间近距离观察她们快乐工作的,还在银泰百货的支持下绽放她们认真生(chou)活(mei)的光芒。 雏恬 我不想做被保护的女生,我想做改变世界的极客。
|
测试技术 C#
AY写给国人的教程- VS2017 Live Unit Testing[1/2]-C#人爱学不学-aaronyang技术分享
原文:AY写给国人的教程- VS2017 Live Unit Testing[1/2]-C#人爱学不学-aaronyang技术分享 谢谢大家观看-AY的 VS2017推广系列 Live Unit Testing AY当前VS的版本---- 15.
1066 0
|
测试技术 C# C++
AY写给国人的教程- VS2017 Live Unit Testing[2/2]-C#人爱学不学-aaronyang技术分享
原文:AY写给国人的教程- VS2017 Live Unit Testing[2/2]-C#人爱学不学-aaronyang技术分享 谢谢大家观看-AY的 VS2017推广系列 Live Unit Testing 目前支持的框架 AY当前VS的版本---- 15.7.1 打开设置 如果你的解决方案,不包括单元测试的项目,你单击了实时单元测试,虽然菜单栏会有停止,暂停,但实际不会运行的。
1187 0
|
算法 机器人 定位技术
算法学习之路|hdu 1035 Robot Motion(模拟)
给一个地图,由ESWN(东南西北)组成,机器人根据脚下的指令移动,求如果机器人能走出地图,走的步数多少,如果不能走出,求每绕一圈的步数和绕圈之前走的步数。
1115 0