#32368:


abbvve@gmail.com (屁眼先生)

學校 : 國立臺中第二高級中學
編號 : 186251
來源 : [60.249.12.45]
最後登入時間 :
2022-12-02 15:33:28
i376. 尋寶 (Treasure) -- TOI練習賽202205新手組第1題 | From: [60.249.12.45] | 發表日期 : 2022-10-03 14:59

#include <iostream>
#include <vector>
#include <cmath>
#include <string>
#include <algorithm>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;

int main(int argc, char** argv) {
    int n,x,y,judge=0;
    cin>>n;
    int a[n][n];
    int max[n],min[n];
    for (int i=0;i<n;i++){
        for (int j=0;j<n;j++)
            cin>>a[i][j];
    }
    for (int i=0;i<n;i++){
        max[i]=a[i][0];
        for (int j=0;j<n;j++){
            if (a[i][j]>max[i]){
                max[i]=a[i][j];
            }
        }
    }
    for (int i=0;i<n;i++){
        min[i]=a[0][i];
        for (int j=0;j<n;j++){
            if (a[j][i]<min[i]){
                min[i]=a[j][i];
            }
        }
    }
    for (int i=0;i<n;i++){
        for (int j=0;j<n;j++){
            if (max[i]==min[j]){
                x=i;
                y=j;
                judge=1;
                break;
            }
        }
    }
    if (judge==1){
        cout<<x<<" "<<y;
    }
    else 
        cout<<"NO";
    return 0;
}

 
ZeroJudge Forum