Codeforces Beta Round #96 (Div. 2) (類比)

來源:互聯網
上載者:User
D. Piettime limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

Piet is one of the most known visual esoteric programming languages. The programs in Piet are constructed from colorful blocks of pixels and interpreted using pretty complicated rules. In this problem we will use a subset of Piet language with simplified rules.

The program will be a rectangular image consisting of colored and black pixels. The color of each pixel will be given by an integer number between 0 and 9, inclusive, with 0 denoting black. A block of pixels is defined as a rectangle of pixels of the same color
(not black). It is guaranteed that all connected groups of colored pixels of the same color will form rectangular blocks. Groups of black pixels can form arbitrary shapes.

The program is interpreted using movement of instruction pointer (IP) which consists of three parts:

<ul< ul="">

  • current block pointer (BP); note that there is no concept of current pixel within the block;

  • direction pointer (DP) which can point left, right, up or down;

  • block chooser (CP) which can point to the left or to the right from the direction given by DP; in absolute values CP can differ from DP by 90 degrees counterclockwise or clockwise, respectively.

    <p< p="">

    Initially BP points to the block which contains the top-left corner of the program, DP points to the right, and CP points to the left (see the orange square on the image below).

    One step of program interpretation changes the state of IP in a following way. The interpreter finds the furthest edge of the current color block in the direction of the DP. From all pixels that form this edge, the interpreter selects the furthest one in the
    direction of CP. After this, BP attempts to move from this pixel into the next one in the direction of DP. If the next pixel belongs to a colored block, this block becomes the current one, and
    two other parts of IP stay the same. It the next pixel is black or outside of the program, BP stays the same but two other parts of IP change. If CP was pointing to the left, now it points to the right, and DP stays the same. If CP was pointing to the right,
    now it points to the left, and DP is rotated 90 degrees clockwise.

    This way BP will never point to a black block (it is guaranteed that top-left pixel of the program will not be black).

    You are given a Piet program. You have to figure out which block of the program will be current after n steps.

  • <p< p=""><p< p="">

    Input

    <p< p="">

    The first line of the input contains two integer numbers m (1 ≤ m ≤ 50)
    and n (1 ≤ n ≤ 5·107).
    Next m lines contain the rows of the program. All the lines have the same length between 1 and 50 pixels, and consist of characters 0-9.
    The first character of the first line will not be equal to 0.

    <p< p=""><p< p="">

    Output

    <p< p="">

    Output the color of the block which will be current after n steps of program interpretation.

    <p< p=""><p< p="">

    Sample test(s)

    <p< p=""><p< p="">

    input
    2 101243
    output
    1
    input
    3 12142366246625
    output
    6
    input
    5 91034523456345674567856789
    output
    5

    <p< p=""><p< p="">

    Note

    <p< p="">

    In the first example IP changes in the following way. After step 1 block 2 becomes current one and stays it after two more steps. After step 4 BP moves to block 3, after step 7 — to block 4, and finally after step 10 BP returns to block 1.

    The sequence of states of IP is shown on the image: the arrows are traversed clockwise, the main arrow shows direction of DP, the side one — the direction of CP.

    #include<cstring>#include<iostream>using namespace std;#define N 55int dir[4][2] = {{0,1},{1,0},{0,-1},{-1,0}};int vis[N][N][5][5];int map[N][N];int m, n, l;struct Item{    int dp,cp,r,c,tr,tc;    void next()    {        while(1)        {            tr = r + dir[dp][0];            tc = c + dir[dp][1];            if ( check() ) break;            r = tr; c = tc;            }            int t = dp;            dp = cp == 0 ? (dp + 3)%4 : (dp+1)%4;            while(1)            {                tr = r + dir[dp][0];                tc = c + dir[dp][1];                if ( check() ) break;                r = tr; c = tc;            }            dp = t;            tr = r + dir[dp][0];            tc = c + dir[dp][1];            if(tr < 0 || tr >= m || tc < 0 || tc >= l || map[tr][tc] == 0 )            {                if( cp == 0 ) cp = 1;                else { cp = 0; dp = ( dp + 1 ) % 4; }            }            else { r = tr; c = tc; }        }    bool check ()    {        return (tr < 0 || tr >= m || tc < 0 || tc >= l || map[tr][tc] != map[r][c]);    }    int visId ()    {        return vis[r][c][dp][cp];    }    void setVis( int id )    {        vis[r][c][dp][cp] = id;    }};int main(){    char tmp[N];    cin >> m >> n;    for ( int i = 0; i < m; i++ )    {        cin >> tmp;        if (i==0) l = strlen(tmp);        for ( int j = 0; j < l; j++ )            map[i][j] = tmp[j] - '0';    }    Item step; int id;    step.cp = step.dp = step.r = step.c = id = 0;    memset(vis,-1,sizeof(vis));    step.setVis(id++);    while ( n-- )    {        step.next();        if( step.visId() == -1 ) { step.setVis(id++); continue; }        n = n % ( id - step.visId() );  break;    }    n = n < 0 ? 0 : n;    while ( n-- ) step.next();    cout << map[step.r][step.c] << endl;    return 0;}

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.