#19616: C++原始人解法


cooljamesku92@gmail.com (你要不要訂閱一塊沒有影片的餅乾owo)

學校 : 臺北市立大同高級中學
編號 : 87502
來源 : [114.36.182.35]
最後登入時間 :
2021-11-19 20:47:58
b367. 翻轉世界 -- 自己 | From: [220.141.82.246] | 發表日期 : 2019-10-13 21:58

#include<iostream>
using namespace std;

int main()
{
    int t,length,width;
    cin>>t;
    for(int i=1;i<=t;i++)
    {
        bool equal=true;
        cin>>length>>width;
        int reg[length][width];
        for(int n=0;n<=length-1;n++)
            for(int m=0;m<=width-1;m++)
                cin>>reg[n][m];
        for(int n=0;n<=length-1;n++)
        {
            for(int m=0;m<=width-1;m++)
            {
                if(reg[n][m]!=reg[length-1-n][width-1-m])
                {
                    equal=false;
                    break;
                }
            }
        }    
        if(equal==true)
            cout<<"go forward"<<endl;
        else
            cout<<"keep defending"<<endl;
    }    
    return 0;
}

 
ZeroJudge Forum