无需高精度比较
2024-06-30 16:37:14
发布于:上海
23阅读
0回复
0点赞
首先,位数不一样的数,肯定是位数多的数大;
其次,位数相同的数,字典序大的数更大。
所以无需高精度。
#include <iostream>
#include <string>
#include <algorithm>
#include <cmath>
using namespace std;
int a[20005];
int main(){
string mx;
int maxi;
int n;
cin>>n;
for(int i=1;i<=n;i++){
string s;
cin>>s;
if(s.length()>mx.length()) mx=s,maxi=i;
else if(s.length()==mx.length()&&s>mx) mx=s,maxi=i;
}
cout<<maxi<<endl<<mx<<endl;
return 0;
}
这里空空如也
有帮助,赞一个