P1781 宇宙總統(tǒng)(運(yùn)算符重載)
//https://www.luogu.com.cn/problem/P1781?contestId=96630
#include<bits/stdc++.h>
using namespace std;
int n;
const int N=30;
//用于保存各個(gè)人順序以及字符串
struct Node
{
? ?string x;//保存選票數(shù)量
? ?int num;//序號(hào)
? ?friend bool operator < (const Node &n1 ,const Node &n2)
? ?{
? ? ? ?//如果兩個(gè)字符串長(zhǎng)度不相同則把長(zhǎng)的
? ? ? ?//發(fā)生交換的條件返回真,即前面的字符串更長(zhǎng)則交換
? ? ? ?if(n1.x.size() ?!= n2.x.size())
? ? ? ?{
? ? ? ? ? ?return n1.x.size()<n2.x.size();
? ? ? ?}
? ? ? ?else
? ? ? ?{
? ? ? ? ? ?//連個(gè)字符串長(zhǎng)度相同則按照字典序?qū)ψ址谝粋€(gè)字母進(jìn)行排序
? ? ? ? ? ?//即開(kāi)頭為0放在前開(kāi)頭為9放最后
? ? ? ? ? ?return n1.x<n2.x;
? ? ? ?}
? ?}
};
Node a[N];
int main()
{
? ?scanf("%d",&n);
? ?int seq=1;
? ?for(int i=0;i<n;i++)
? ?{
? ? ? ?cin>>a[i].x;
? ? ? ?a[i].num=seq++;
? ?}
? ?sort(a,a+n);
? ?cout<<a[n-1].num<<endl;
? ?cout<<a[n-1].x<<endl;
}