結果

問題 No.449 ゆきこーだーの雨と雪 (4)
ユーザー FF256grhyFF256grhy
提出日時 2016-11-19 05:59:40
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 2,152 bytes
コンパイル時間 894 ms
コンパイル使用メモリ 85,092 KB
実行使用メモリ 8,696 KB
最終ジャッジ日時 2023-10-23 15:53:50
合計ジャッジ時間 8,997 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 3 ms
4,348 KB
testcase_04 AC 3 ms
4,348 KB
testcase_05 AC 3 ms
4,348 KB
testcase_06 AC 3 ms
4,348 KB
testcase_07 AC 3 ms
4,348 KB
testcase_08 AC 3 ms
4,348 KB
testcase_09 AC 3 ms
4,348 KB
testcase_10 AC 2 ms
4,348 KB
testcase_11 AC 3 ms
4,348 KB
testcase_12 AC 831 ms
4,348 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:69:34: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘std::__iterator_traits<std::_Rb_tree_const_iterator<long long int>, void>::difference_type’ {aka ‘long int’} [-Wformat=]
   69 |                         printf("%d\n", std::distance(v.find(score[id]), v.end()));
      |                                 ~^     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
      |                                  |                  |
      |                                  int                std::__iterator_traits<std::_Rb_tree_const_iterator<long long int>, void>::difference_type {aka long int}
      |                                 %ld
main.cpp:40:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   40 |         scanf("%d", &n);
      |         ~~~~~^~~~~~~~~~
main.cpp:41:26: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   41 |         inc(i, n) { scanf("%d", &l[i]); }
      |                     ~~~~~^~~~~~~~~~~~~
main.cpp:42:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   42 |         scanf("%d", &t);
      |         ~~~~~^~~~~~~~~~

ソースコード

diff #

#include <cstdio>
#include <cmath>

#include <iostream>
#include <string>
#include <map>
#include <set>
#include <algorithm>

#define incID(i, l, r) for(int i = (l)    ; i <  (r); i++)
#define incII(i, l, r) for(int i = (l)    ; i <= (r); i++)
#define decID(i, l, r) for(int i = (r) - 1; i >= (l); i--)
#define decII(i, l, r) for(int i = (r)    ; i >= (l); i--)
#define inc( i, n) incID(i, 0, n)
#define inc1(i, n) incII(i, 1, n)
#define dec( i, n) decID(i, 0, n)
#define dec1(i, n) decII(i, 1, n)

typedef long long   signed int LL;
typedef long long unsigned int LU;

template<typename T> void swap(T &x, T &y) { T t = x; x = y; y = t; return; }
template<typename T> T abs(T x) { return (0 <= x ? x : -x); }
template<typename T> T max(T a, T b) { return (b <= a ? a : b); }
template<typename T> T min(T a, T b) { return (a <= b ? a : b); }
template<typename T> bool setmin(T &a, T b) { if(a <= b) { return false; } else { a = b; return true; } }
template<typename T> bool setmax(T &a, T b) { if(b <= a) { return false; } else { a = b; return true; } }
template<typename T> T gcd(T a, T b) { return (b == 0 ? a : gcd(b, a % b)); }
template<typename T> T lcm(T a, T b) { return a / gcd(a, b) * b; }

// ---- ----

int n, l[26], t;
int ac[26], counter;
LL score[100000], at[100000];
std::map<std::string, int> m;
std::set<LL> v;

int main() {
	scanf("%d", &n);
	inc(i, n) { scanf("%d", &l[i]); }
	scanf("%d", &t);
	inc(i, t) {
		std::string name;
		char p;
		std::cin >> name >> p;
		if(p != '?') {
			auto it = m.find(name);
			bool new_flag = (it == m.end());
			if(new_flag) {
				it = (m.insert(std::make_pair(name, counter++))).first;
			}
			int id = it -> second;
			int prob = p - 'A';
			ac[prob]++;
			LL plus = ( 50 * l[prob] + (500 * l[prob]) / (8 + 2 * ac[prob]) ) * 200000L + at[id] - i;
			at[id] = i;
			if(new_flag) {
				v.insert(plus);
			} else {
				// *v.find(score[id]) += plus;
				v.erase(score[id]);
				v.insert(score[id] + plus);
			}
			// std::sort(v.begin(), v.end());
			score[id] += plus;
		} else {
			int id = m.find(name) -> second;
			printf("%d\n", std::distance(v.find(score[id]), v.end()));
		}
	}
	
	return 0;
}
0