日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

CodeForces 321A Ciel and Robot(数学模拟)

發布時間:2025/3/16 44 豆豆
生活随笔 收集整理的這篇文章主要介紹了 CodeForces 321A Ciel and Robot(数学模拟) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

題目鏈接:http://codeforces.com/problemset/problem/321/A

題意:在一個二維平面中,開始時在(0,0)點,目標點是(a,b),問能不能通過重復操作題目中的指令,從原點移動到目標點。

分析:假設一次完成所有的命令后,移動到了(xx,yy),并且從(Xi,Yi)重復操作k次指令到達目標點,則可以列出方程 Xi + k * xx = a && Yi + k * yy = b,然后解出k,判斷k是否大于等于0即可。

#include <cstdio> #include <cstring> #include <algorithm> using namespace std; typedef __int64 LL; LL a, b, xx, yy; LL X[150], Y[150]; int len; bool check(LL x, LL y) {LL tmp_x = a - x, tmp_y = b - y;if(xx == 0) {if(yy == 0) {if(tmp_x == 0 && tmp_y == 0) return true;else return false;}else {if(tmp_y % yy == 0) {if(tmp_y / yy >= 0 && tmp_x == 0) return true;else return false;}else return false;}}else {if(yy == 0) {if(tmp_x % xx == 0) {if(tmp_x / xx >= 0 && tmp_y == 0) return true;else return false;}else return false;}else {if(tmp_x % xx == 0 && tmp_y % yy == 0) {if(tmp_x / xx >= 0 && tmp_y / yy >= 0 && tmp_x / xx == tmp_y / yy) return true;else return false;}else return false;}} }int main() {char op[150];while(~scanf("%I64d%I64d", &a, &b)) {scanf("%s", op);if(a == 0 && b == 0) {printf("Yes\n");continue;}len = strlen(op);LL x = 0, y = 0;int FLAG = 0;for(int i = 0; i < len; i++) {if(op[i] == 'U') y++;else if(op[i] == 'D') y--;else if(op[i] == 'L') x--;else if(op[i] == 'R') x++;X[i] = x, Y[i] = y;}xx = X[len-1], yy = Y[len-1];for(int i = 0; i < len; i++) {if(check(X[i], Y[i])) {FLAG = 1;printf("Yes\n");break;}}if(!FLAG) printf("No\n");}return 0; }

總結

以上是生活随笔為你收集整理的CodeForces 321A Ciel and Robot(数学模拟)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。