A. Inna and Pink Pony

Inna and Pink Pony
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Dima and Inna are doing so great! At the moment, Inna is sitting on the magic lawn playing with a pink pony. Dima wanted to play too. He brought an n × m chessboard, a very tasty candy and two numbers a and b.

Dima put the chessboard in front of Inna and placed the candy in position (i, j) on the board. The boy said he would give the candy if it reaches one of the corner cells of the board. He's got one more condition. There can only be actions of the following types:

  • move the candy from position (x, y) on the board to position (x - a, y - b);
  • move the candy from position (x, y) on the board to position (x + a, y - b);
  • move the candy from position (x, y) on the board to position (x - a, y + b);
  • move the candy from position (x, y) on the board to position (x + a, y + b).

Naturally, Dima doesn't allow to move the candy beyond the chessboard borders.

Inna and the pony started shifting the candy around the board. They wonder what is the minimum number of allowed actions that they need to perform to move the candy from the initial position (i, j) to one of the chessboard corners. Help them cope with the task!

Input

The first line of the input contains six integers n, m, i, j, a, b (1 ≤ n, m ≤ 106; 1 ≤ i ≤ n; 1 ≤ j ≤ m; 1 ≤ a, b ≤ 106).

You can assume that the chessboard rows are numbered from 1 to n from top to bottom and the columns are numbered from 1 to mfrom left to right. Position (i, j) in the statement is a chessboard cell on the intersection of the i-th row and the j-th column. You can consider that the corners are: (1, m)(n, 1)(n, m)(1, 1).

Output

In a single line print a single integer — the minimum number of moves needed to get the candy.

If Inna and the pony cannot get the candy playing by Dima's rules, print on a single line "Poor Inna and pony!" without the quotes.

Examples
input
5 7 1 3 2 2
output
2
input
5 5 2 3 1 1
output
Poor Inna and pony!
Note

Note to sample 1:

Inna and the pony can move the candy to position (1 + 2, 3 + 2) = (3, 5), from there they can move it to positions (3 - 2, 5 + 2) = (1, 7)and (3 + 2, 5 + 2) = (5, 7). These positions correspond to the corner squares of the chess board. Thus, the answer to the test sample equals two.


#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <cctype>
#include <iostream>
#include <algorithm>
#include <string>
#include <vector>
#include <queue>
#include <map>
#include <set>
#include <sstream>
#include<iomanip>
using namespace std;
typedef long long ll;
#define inf int(0x3f3f3f3f)
#define mod int(1e9+7)
#define pi acos(-1)

int n,m,i,j,a,b;
int main()
{
	while(scanf("%d%d",&n,&m)!=EOF)
	{
		scanf("%d%d%d%d",&i,&j,&a,&b);
		int t=1; int pd=0;
		if((j+b)>m&&(j-b)<1)
			t=0;
		if((i+a)>n&&(i-a)<1)
			t=0;
		if((i==1&&j==1)||(i==1&&j==m)||(i==n&&j==1)||(i==n&&j==m))
		{
			 pd=1;
			 puts("0");
		}
		int s1,s2,flag;
		flag=0;
		s1=j-1;
		s2=i-1;
		int ans;
	    ans=inf;
		if(t==1&&s1%b==0&&s2%a==0&&abs(s1/b-s2/a)%2==0&&pd==0)
		{
			flag=1;
			if(ans>max(s1/b,s2/a))
				ans=max(s1/b,s2/a);
		}
		s1=m-j;
		s2=i-1;
		if(t==1&&s1%b==0&&s2%a==0&&abs(s1/b-s2/a)%2==0&&pd==0)
		{
			flag=1;
			if(ans>max(s1/b,s2/a))
				ans=max(s1/b,s2/a);
		}
		s1=m-j;
		s2=n-i;
		if(t==1&&s1%b==0&&s2%a==0&&abs(s1/b-s2/a)%2==0&&pd==0)
		{
			flag=1;
			if(ans>max(s1/b,s2/a))
				ans=max(s1/b,s2/a);
		}
		s1=j-1;
		s2=n-i;
		if(t==1&&s1%b==0&&s2%a==0&&abs(s1/b-s2/a)%2==0&&pd==0)
		{
			flag=1;
			if(ans>max(s1/b,s2/a))
				ans=max(s1/b,s2/a);
		}
		if(flag&&pd!=1) printf("%d\n",ans);
		else if(pd!=1) puts("Poor Inna and pony!");
	}
	return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值