沐里纷纷


私信TA

用户名:Epoch

访问量:62725

签 名:

我不会算法

等  级
排  名 37
经  验 12807
参赛次数 1
文章发表 172
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

不会算法

解题思路:

注意事项:

参考代码:

#include <iostream>

#include <vector>

#include <algorithm>

#include <string>

#include <stdio.h>


#define N 100


using namespace std;


vector< pair<string, int> > testRec[N + 2];

vector<int> ranks;


bool cmp(pair<string, int> a, pair<string, int> b)

{

if (a.second > b.second)

return true;

else if (a.second == b.second)

if (a.first == "DaDa")

return true;

return false;

}


int getRank(const vector< pair<string, int> >& test)

{

for (int i = 0; i < test.size(); i++)

{

if (test[i].first == "DaDa")

return (i + 1);

}

}


void getRanks(const int m)

{

for (int i = 0; i < m; i++)

{

sort(testRec[i].begin(), testRec[i].end(), cmp);

int rank = getRank(testRec[i]);

ranks.push_back(rank);

}

}


int main(int argc, char** argv)

{

int n = 0,m = 0;

string junk[N+2];


cin >> n;

for (int i = 0; i < n; i++)

cin >> junk[i];

cin >> m;

for (int i = 0; i < m; i++)

{

for (int j = 0; j < n; j++)

{

string p;

int s;

cin >> s >> p;

pair<string, int> temp(p, s);

testRec[i].push_back(temp);

}

}


getRanks(m);


for (vector<int>::iterator it = ranks.begin(); it < ranks.end(); it++)

cout << *it << endl;


return 0;

}


 

0.0分

0 人评分

看不懂代码?想转换其他语言的代码? 或者想问其他问题? 试试问问AI编程助手,随时响应你的问题:

编程语言转换

万能编程问答

代码解释器

  评论区