杭电OJ 2022——海选女主角
程序员文章站
2022-05-13 17:14:56
...
#2022
题目中取的是绝对值,因此可以初始化low为0,不然的话会麻烦一点,有一个细节是,多个绝对值相等的话,去行号或者列号最小的为准,因此边读的时候边比较,可以解决这个问题,主要考察点应该是二维数组,一开始本来想设置大一点的二维数组,
发现number[1010][1010]直接终止程序了,所以感觉这个还是有点问题的,但是可以AC。
题目直达
http://acm.hdu.edu.cn/showproblem.php?pid=2022
AC代码
#include <iostream>
#include <cstdio>
#include <cmath>
#include <cstring>
using namespace std;
int main() {
int m,n;
while(cin>>m>>n){
int score[100][100];
int low=0;
int x=0;
int y=0;
for(int i=0;i<m;i++){
for(int j=0;j<n;j++){
cin>>score[i][j];
if(abs(score[i][j])>abs(low)){
low=score[i][j];
x=i;
y=j;
}
}
}
cout<<x+1<<" "<<y+1<<" "<<score[x][y]<<endl;
}
return 0;
}