結果

問題 No.449 ゆきこーだーの雨と雪 (4)
ユーザー guestguest
提出日時 2016-11-21 13:13:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,050 bytes
コンパイル時間 2,209 ms
コンパイル使用メモリ 182,608 KB
実行使用メモリ 19,588 KB
最終ジャッジ日時 2024-09-22 10:27:49
合計ジャッジ時間 13,948 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 3 ms
6,816 KB
testcase_04 AC 3 ms
6,812 KB
testcase_05 AC 3 ms
6,816 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 156 ms
6,940 KB
testcase_13 AC 410 ms
8,048 KB
testcase_14 AC 299 ms
8,048 KB
testcase_15 AC 457 ms
7,920 KB
testcase_16 AC 348 ms
7,920 KB
testcase_17 AC 355 ms
7,916 KB
testcase_18 AC 159 ms
6,940 KB
testcase_19 AC 300 ms
8,048 KB
testcase_20 AC 292 ms
8,052 KB
testcase_21 AC 407 ms
8,048 KB
testcase_22 AC 411 ms
8,048 KB
testcase_23 AC 156 ms
6,940 KB
testcase_24 AC 356 ms
7,928 KB
testcase_25 AC 173 ms
6,944 KB
testcase_26 AC 187 ms
6,940 KB
testcase_27 AC 406 ms
8,044 KB
testcase_28 AC 401 ms
8,052 KB
testcase_29 AC 296 ms
8,052 KB
testcase_30 AC 467 ms
7,924 KB
testcase_31 AC 411 ms
8,176 KB
testcase_32 AC 277 ms
8,048 KB
testcase_33 AC 331 ms
8,052 KB
testcase_34 WA -
testcase_35 AC 445 ms
8,052 KB
testcase_36 WA -
testcase_37 AC 136 ms
19,460 KB
testcase_38 AC 180 ms
11,344 KB
testcase_39 AC 167 ms
11,472 KB
testcase_40 AC 169 ms
11,344 KB
testcase_41 AC 509 ms
11,344 KB
testcase_42 AC 322 ms
11,468 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 136 ms
19,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>


#define rep(x,to) for(int (x)=0;(x)<(to);(x)++)
#define all(c) (c).begin(),(c).end()
#define sz(v) (int)(v).size()
#define dnmin(a,b) (a)=min((a),(b))

using namespace std;
typedef vector<int> VI;
typedef pair<int, int> pii;


int main(){
 
	int n, t;
	cin >>n;
	VI hs(n);
	unordered_map<string, VI> mp;
	vector<int64_t> jun;
	rep(i,n) cin >>hs[i];
	cin >> t;
	VI nos(n);
	rep(i, t){
		string s; char a;
		cin >> s >> a;
		if(!mp.count(s)) mp[s] = VI{ 0,0,0};
		if(a != '?'){
			if(mp[s][0] !=0){
				int64_t sk = (1000-mp[s][0])*500000 + mp[s][1];
				auto it = lower_bound(all(jun), sk);
				jun.erase(it);
			}
			mp[s][1] = i+1;
			int mz= a-'A';
			mp[s][0] += 50 * hs[mz] + (500 * hs[mz]) / (8 + 2* (++nos[mz]));
			int64_t sk = (1000-mp[s][0])*500000 + mp[s][1];
			auto it = lower_bound(all(jun), sk);
			jun.insert(it, sk);
		}else{
			int64_t sk = (1000-mp[s][0])*500000 + mp[s][1];
			auto it = lower_bound(all(jun), sk);
			int ans = distance(jun.begin(), it);
			cout << ans  + 1 <<"\n";
		}
	}
	return 0;
}
 
0