程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程解疑 >> square-A flea on a chessboard

square-A flea on a chessboard

編輯:編程解疑
A flea on a chessboard

Description
POJ 1728 A flea on a chessboard [number theory - loop modulo circuit judge issues +]
Security Infinite chessboard is obtained by extending a Finite chessboard to the right and up Infinitely. Each square of the chessboard is either Black or White with the side of S milimiters, 0 <S <= 1000. The leftmost bottom square of the chessboard is black. A flea is positioned on the chessboard at the point (x, y) (given in milimeters) and makes jumps by jumping dx milimeters to the right and dy milimiters up, 0 <dx, dy, that is, a flea at position (x, y) after one jump lands at position (x + dx, y + dy).
Given the starting position of the flea on the board your task is to find out after how many jumps the flea will reach a white square. If the flea lands on a boundary between two squares then it does not count as landing on the white square. Note that it is possible that the flea never reaches a white square.
Input
Each test case consists of one line of input containing five non-negative numbers separated by white space and giving integers S, x, y, dx, and dy. An input line containing five zeroes follows the last test case.
Output
For test case print one line of output in the format shown in the sample.
Sample Input
10 2 3 3 2
100 49 73 214 38
25 0 0 5 25
407 1270 1323 1 1
18 72 6 18 6
407 1270 1170 100 114
0 0 0 0 0
Sample Output
After 3 jumps the flea lands at (11, 9).
After 1 jumps the flea lands at (263, 111).
The flea cannot escape from black squares.
After 306 jumps the flea lands at (1576, 1629).
The flea cannot escape from black squares.
After 0 jumps the flea lands at (1270, 1170).

最佳回答:


http://www.codeweblog.com/poj-1728-a-flea-on-a-chessboard-number-theory-loop-modulo-circuit-judge-issues/

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved