結果

問題 No.447 ゆきこーだーの雨と雪 (2)
ユーザー moyashi_senpaimoyashi_senpai
提出日時 2016-11-18 22:50:51
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,993 bytes
コンパイル時間 1,014 ms
コンパイル使用メモリ 114,620 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-04 18:03:52
合計ジャッジ時間 1,928 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 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:44:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   44 |         scanf("%d", &n);
      |         ~~~~~^~~~~~~~~~
main.cpp:48:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   48 |                 scanf("%d", &star[i]);
      |                 ~~~~~^~~~~~~~~~~~~~~~
main.cpp:51:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   51 |         scanf("%d", &t);
      |         ~~~~~^~~~~~~~~~
main.cpp:56:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   56 |                 scanf("%s%*c%c", name, &mon);
      |                 ~~~~~^~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <vector>
#include <cmath>
#include <cstring>
#include <numeric>
#include <algorithm>
#include <functional>
#include <array>
#include <map>
#include <queue>
#include <limits.h>
#include <set>
#include <stack>
#include <random>
#define rep(i,s,n) for(int i = (s); (n) > i; i++)
#define REP(i,n) rep(i,0,n)
#define RANGE(x,a,b) ((a) <= (x) && (x) <= (b))
#define DUPLE(a,b,c,d) (RANGE(a,c,d) || RANGE(b,c,d) || RANGE(c,a,b) || RANGE(d,a,b))
#define INCLU(a,b,c,d) (RANGE(a,c,d) && (b,c,d))
#define POWT(x) ((x)*(x))
#define ALL(x) (x).begin(), (x).end()
#define MODU 1000000007
#define bitcheck(a,b)   ((a >> b) & 1)
#define bitset(a,b)      ( a |= (1 << b))
#define bitunset(a,b)    (a &= ~(1 << b))
using namespace std;
typedef pair<int, int> pii;
typedef long long ll;

const pii Dir[8] = { //?????????
	{ 0,1 },{ 0,-1 },{ 1,0 },{ -1,0 },
	{ 1,1 },{ 1,-1 },{ -1,-1 },{ -1,1 }
};
template<typename A, size_t N, typename T>
void Fill(A(&array)[N], const T &val) {
	std::fill((T*) array, (T*) (array + N), val);
}
int point(int a, int b) {
	return 50 * a + (int) ((500 * a) / (8 + 2 * b));
}
signed main() {
	int n;
	scanf("%d", &n);
	vector<int> star(n);
	vector<int> monc(n);
	REP(i, n) {
		scanf("%d", &star[i]);
	}
	int t;
	scanf("%d", &t);
	map<string, pair<int,map<int,int>>> man;
	REP(i, t) {
		char name[17],mon;
		int mnum;
		scanf("%s%*c%c", name, &mon);
		mnum = mon - 'A';
		monc[mnum]++;
		man[name].second[mnum] = point(star[mnum], monc[mnum]);
		man[name].first += point(star[mnum], monc[mnum]);
	}
	priority_queue<pair<int,string>> ans;
	for (auto itr : man) {
		string s;
		char str [1000];
		sprintf(str," %s", itr.first.c_str());
		s += str;
		REP(i, n) {
			sprintf(str," %d", itr.second.second[i]);
			s += str;
		}
		sprintf(str," %d\n", itr.second.first);
		s += str;
		ans.push({itr.second.first,s});
	}
	int cou = 1;
	while (ans.size()) {
		printf("%d %s",cou,ans.top().second.c_str());
		ans.pop();
		cou++;
	}
	return 0;
}
0