結果

問題 No.447 ゆきこーだーの雨と雪 (2)
ユーザー kurenai3110kurenai3110
提出日時 2016-11-18 23:06:16
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,447 bytes
コンパイル時間 1,006 ms
コンパイル使用メモリ 88,244 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-04 18:19:44
合計ジャッジ時間 2,050 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:53:26: warning: ‘num’ may be used uninitialized in this function [-Wmaybe-uninitialized]
   53 |                 Score[num][P[i]] = score;
      |                          ^

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <cmath>
#include <cstdlib>
#include <map>
using namespace std;

int main()
{
	int n; cin >> n;
	vector<int>L(n);
	vector<int>Speed(n);
	for (int i = 0; i < n; i++)cin >> L[i];
	int T; cin >> T;
	vector<string>Name;
	vector<int>P(T);

	vector<vector<int>>Score;
	vector<pair<int, int>>Rank;
	for (int i = 0; i < T; i++) {
		string name;
		char c;
		cin >> name >> c;
		P[i] = c - 'A';

		int num;
		if (Name.size() == 0) {
			Name.push_back(name);
			num = 0;
			vector<int>l(n);
			Score.push_back(l);
		}
		else {
			for (int j = 0; j < Name.size(); j++) {
				if (Name[j] == name) {
					num = j;
					break;
				}
				if (j == Name.size() - 1) {
					Name.push_back(name);
					num = j;
					vector<int>l(n);
					Score.push_back(l);
				}
			}
		}

		int score = 50 * L[P[i]] + 50 * L[P[i]] / (0.8 + 0.2*(Speed[P[i]]+1));
		Speed[P[i]]++;

		Score[num][P[i]] = score;
	}

	for (int i = 0; i < Score.size(); i++) {
		int score = 0;
		for (int j = 0; j < n; j++) {
			score += Score[i][j];
		}
		Rank.push_back(make_pair(score,i));
	}

	sort(Rank.begin(), Rank.end());
	reverse(Rank.begin(), Rank.end());

	for (int i = 0; i < Score.size(); i++) {
		cout << i + 1 << " " << Name[Rank[i].second] << " ";
		for (int j = 0; j < n; j++) {
			if (j)cout << " ";
			cout << Score[Rank[i].second][j];
		}
		cout << " " << Rank[i].first << endl;
	}
	
    return 0;
}
0