博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces 652F Ants on a Circle
阅读量:5077 次
发布时间:2019-06-12

本文共 1632 字,大约阅读时间需要 5 分钟。

感觉这个思路好巧妙啊。

我们能发现不管怎么碰撞,初始态和最终态蚂蚁间的相对顺序都是一样的, 并且所占的格子也是一样的, 那么我们就只需要

找到其中一个蚂蚁的最终位置就能确定所有蚂蚁的位置了, 我们考虑找初始为止离0最近的那个蚂蚁的最终位置,我们能发现

蚂蚁从m-1->0  rk++, 蚂蚁从0->m-1 rk--, 在取模意义下rk就是那个蚂蚁的最终位置。

#include
#define LL long long#define fi first#define se second#define mk make_pair#define PLL pair
#define PLI pair
#define PII pair
#define SZ(x) ((int)x.size())#define ull unsigned long longusing namespace std;const int N = 1e6 + 7;const int inf = 0x3f3f3f3f;const LL INF = 0x3f3f3f3f3f3f3f3f;const int mod = 1e9 + 7;const double eps = 1e-8;const double PI = acos(-1);LL n, m, t, cnt, X[N], ans[N];char T[10];struct node { LL s, d, id; bool operator < (const node& rhs) const { return s < rhs.s; }} a[N];int main() { scanf("%lld%lld%lld", &n, &m, &t); for(int i = 0; i < n; i++) { scanf("%lld%s", &a[i].s, T); a[i].s--; a[i].id = i; if(T[0] == 'L') a[i].d = -1; else a[i].d = 1; } sort(a, a + n); for(int i = 0; i < n; i++) { if(a[i].d == 1) { X[i] = (a[i].s + t) % m; cnt = (cnt + (a[i].s + t) / m) % n; } else { X[i] = (a[i].s - t) % m; cnt = (cnt + (a[i].s - t) / m) % n; if(X[i] < 0) X[i] += m, cnt = (cnt - 1) % n; } } sort(X, X + n); cnt = (cnt % n + n) % n; int now = 0; for(int i = cnt; i < n; i++) ans[a[now++].id] = X[i] + 1; for(int i = 0; i < cnt; i++) ans[a[now++].id] = X[i] + 1; for(int i = 0; i < n; i++) printf("%lld ", ans[i]); return 0;}/**/

 

转载于:https://www.cnblogs.com/CJLHY/p/10422818.html

你可能感兴趣的文章
vue-搜索功能-实时监听搜索框的输入,N毫秒请求一次数据
查看>>
批处理 windows 服务的安装与卸载
查看>>
React文档翻译 (快速入门)
查看>>
nodejs fs路径
查看>>
动态规划算法之最大子段和
查看>>
linux c:关联变量的双for循环
查看>>
深入浅出理解zend framework(三)
查看>>
python语句----->if语句,while语句,for循环
查看>>
javascript之数组操作
查看>>
LinkedList源码分析
查看>>
TF-IDF原理
查看>>
用JS制作博客页面背景随滚动渐变的效果
查看>>
JavaScript的迭代函数与迭代函数的实现
查看>>
一步步教你学会browserify
查看>>
Jmeter入门实例
查看>>
亲近用户—回归本质
查看>>
中文脏话识别的解决方案
查看>>
CSS之不常用但重要的样式总结
查看>>
Python编译错误总结
查看>>
URL编码与解码
查看>>