Bear in the Field CodeForces - 385E 矩陣快速冪

題目鏈接:點我


Our bear's forest has a checkered field. The checkered field is an n × n table, the rows are numbered from 1 to n from top to bottom, the columns are numbered from 1 to n from left to right. Let's denote a cell of the field on the intersection of row x and column y by record (x, y). Each cell of the field contains growing raspberry, at that, the cell (x, y) of the field contains x + y raspberry bushes.

The bear came out to walk across the field. At the beginning of the walk his speed is (dx, dy). Then the bear spends exactly t seconds on the field. Each second the following takes place:

    Let's suppose that at the current moment the bear is in cell (x, y).
    First the bear eats the raspberry from all the bushes he has in the current cell. After the bear eats the raspberry from k bushes, he increases each component of his speed by k. In other words, if before eating the k bushes of raspberry his speed was (dx, dy), then after eating the berry his speed equals (dx + k, dy + k).
    Let's denote the current speed of the bear (dx, dy) (it was increased after the previous step). Then the bear moves from cell (x, y) to cell (((x + dx - 1) mod n) + 1, ((y + dy - 1) mod n) + 1).
    Then one additional raspberry bush grows in each cell of the field.

You task is to predict the bear's actions. Find the cell he ends up in if he starts from cell (sx, sy). Assume that each bush has infinitely much raspberry and the bear will never eat all of it.

Input

The first line of the input contains six space-separated integers: n, sx, sy, dx, dy, t (1 ≤ n ≤ 1e9; 1 ≤ sx, sy ≤ n;  - 100 ≤ dx, dy ≤ 100; 0 ≤ t ≤ 1e18).

Output

Print two integers — the coordinates of the cell the bear will end up in after t seconds.

Example
Input

5 1 2 0 1 2

Output

3 1

Input

1 1 1 -1 -1 2

Output

1 1

Note

Operation a mod b means taking the remainder after dividing a by b. Note that the result of the operation is always non-negative. For example, ( - 1) mod 3 = 2.

In the first sample before the first move the speed vector will equal (3,4) and the bear will get to cell (4,1). Before the second move the speed vector will equal (9,10) and he bear will get to cell (3,1). Don't forget that at the second move, the number of berry bushes increased by 1.

In the second sample before the first move the speed vector will equal (1,1) and the bear will get to cell (1,1). Before the second move, the speed vector will equal (4,4) and the bear will get to cell (1,1). Don't forget that at the second move, the number of berry bushes increased by 1.

題意:

給你一個矩陣,矩陣上每個點都有一個權值,權值初始爲橫縱座標之和,以後每一秒權值加 1 ,現在熊從(x,y)出發,速度爲(dx, dy);每一秒發生下列事:

  1. 速度增加k, k爲那個點的權值,
  2. 熊的位置開始移動
  3. 每個位置權值加1.

思路:

矩陣快速冪,
根據題意,我們需要把座標變到0 - n-1,
sx[t] = sx[t-1] + dx[t-1] + sx[t-1] + sy[t-1] + t-1 + 2(因爲座標爲0~n-1)

sy[t] = sy[t-1] + dy[t-1] + sx[t-1] + sy[t-1] + t-1 + 2

dx[t] = dx[t-1] + sx[t-1] + sy[t-1] + t-1 + 2

dy[t] = dy[t-1] + sx[t-1] + sy[t-1] + t-1 + 2

t = t-1 + 1

所以遞推矩陣:

211100121100101000010100111110222211


代碼:

#include<cstdio>
#include<algorithm>
#include<cstring>
#include<iostream>
#include<cmath>
#include<queue>
using namespace std;

typedef long long LL;
LL n;

struct mat{
    LL a[7][7];
    mat (){memset(a, 0, sizeof(a)); }
    mat operator *(const mat q){
        mat c;
        for(int i = 1; i <= 6; ++i)
            for(int  k = 1; k <= 6; ++k)
            if (a[i][k])
        for(int j = 1; j <= 6; ++j){
            c.a[i][j] += a[i][k] * q.a[k][j];
            c.a[i][j] = (c.a[i][j] % n + n) % n;
        }return c;
    }
};

mat qpow(mat x, LL n){
    mat ans;
    for(int i = 1; i <= 6; ++i)
        ans.a[i][i] = 1;
    while(n){
        if (n&1) ans = ans * x;
        x = x * x;
        n >>= 1;
    }return ans;
}


int main(){
    LL  sx, sy, dx, dy, t;
    scanf("%lld %lld %lld %lld %lld %lld", &n, &sx, &sy, &dx, &dy, &t);
    mat ans;//構造矩陣
    ans.a[1][2] = ans.a[1][3] = ans.a[2][1] = ans.a[2][4] = ans.a[3][1] = 1;
    ans.a[3][2] = ans.a[3][3] = ans.a[4][1] = ans.a[4][2] = ans.a[4][4] = ans.a[5][5] = 1;
    ans.a[4][5] = ans.a[5][6] = ans.a[6][6] = ans.a[3][5] = 1;
    ans.a[1][5] = ans.a[2][5] = 1;
    ans.a[1][1] = ans.a[2][2] = ans.a[1][6] = ans.a[2][6] = ans.a[3][6] = ans.a[4][6] = 2;
   ans = qpow(ans,t);
    mat c;
    c.a[1][1] = sx-1;
    c.a[2][1] = sy-1;
    c.a[3][1] = dx;
    c.a[4][1] = dy;
    c.a[5][1] = 0;
    c.a[6][1] = 1;
    ans = ans * c;
    printf("%lld %lld\n",ans.a[1][1] + 1, ans.a[2][1] + 1);
    return 0;

}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章