• CCF_201604-2_俄罗斯方块


    用一个4*2的数组记录方块的位置,每一次移动前判断每个方块位置下面是否已有方块,直到不能移动,将该数组更新到原来的图上,输出即可。

    #include<cstdio>
    #include<iostream>
    using namespace std;
    
    int main()
    {
        int a[20][15],c[4][2],left;
        for(int i = 1;i <= 15;i++)
        {
            for(int j = 1;j <= 10;j++)  cin >> a[i][j];
        }
        int num = 0;
        for(int i = 1;i <= 4;i++)
        {
            for(int j = 1;j <= 4;j++)
            {
                int temp;
                cin >> temp;
                if(temp)
                {
                    c[num][0] = i;
                    c[num][1] = j;
                    num++;
                }
    
            }
        }
        cin >> left;
        for(int i = 0;i < 4;i++)
        {
            c[i][1] += left-1;
        }
        while(1)
        {
            for(int i = 0;i < 4;i++)
            {
                if(a[c[i][0]+1][c[i][1]]) goto there;
            }
            for(int i = 0;i < 4;i++)
            {
                c[i][0]++;
            }
        }
        there:
        for(int i = 0;i < 4;i++)
        {
            a[c[i][0]][c[i][1]] = 1;
        }
        for(int i = 1;i <= 15;i++)
        {
            for(int j = 1;j <= 10;j++)  cout << a[i][j] << ' ';
            cout << endl;
        }
        return 0;
    }
  • 相关阅读:
    右滑返回上一页
    flutter 启动图
    [题解]NOIP2014
    [题解]LightOJ1289 LCM from 1 to n
    [题解]CodeForces442B Andrey and Problem
    [题解]HDU4035 Maze
    [题解]CodeForces#290(div1)
    SCP-bzoj-1078
    SCP-bzoj-1068
    SCP-bzoj-1054
  • 原文地址:https://www.cnblogs.com/zhurb/p/5840909.html
Copyright © 2020-2023  润新知