結果

問題 No.449 ゆきこーだーの雨と雪 (4)
ユーザー kzyKTkzyKT
提出日時 2016-11-19 00:00:48
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 203 ms / 5,000 ms
コード長 1,548 bytes
コンパイル時間 1,894 ms
コンパイル使用メモリ 179,408 KB
実行使用メモリ 32,156 KB
最終ジャッジ日時 2024-09-22 10:15:16
合計ジャッジ時間 9,453 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
12,548 KB
testcase_01 AC 5 ms
12,468 KB
testcase_02 AC 5 ms
12,440 KB
testcase_03 AC 6 ms
12,484 KB
testcase_04 AC 5 ms
13,080 KB
testcase_05 AC 6 ms
12,824 KB
testcase_06 AC 5 ms
12,676 KB
testcase_07 AC 6 ms
13,208 KB
testcase_08 AC 5 ms
12,496 KB
testcase_09 AC 5 ms
12,528 KB
testcase_10 AC 5 ms
12,632 KB
testcase_11 AC 6 ms
12,464 KB
testcase_12 AC 124 ms
15,000 KB
testcase_13 AC 161 ms
20,196 KB
testcase_14 AC 185 ms
19,468 KB
testcase_15 AC 151 ms
20,732 KB
testcase_16 AC 176 ms
19,612 KB
testcase_17 AC 174 ms
19,748 KB
testcase_18 AC 124 ms
14,844 KB
testcase_19 AC 187 ms
19,088 KB
testcase_20 AC 181 ms
19,192 KB
testcase_21 AC 164 ms
20,216 KB
testcase_22 AC 163 ms
20,348 KB
testcase_23 AC 123 ms
14,964 KB
testcase_24 AC 171 ms
19,668 KB
testcase_25 AC 140 ms
14,164 KB
testcase_26 AC 162 ms
13,656 KB
testcase_27 AC 165 ms
20,144 KB
testcase_28 AC 162 ms
20,668 KB
testcase_29 AC 194 ms
19,072 KB
testcase_30 AC 149 ms
20,716 KB
testcase_31 AC 166 ms
20,280 KB
testcase_32 AC 183 ms
19,432 KB
testcase_33 AC 168 ms
19,744 KB
testcase_34 AC 141 ms
14,348 KB
testcase_35 AC 147 ms
21,232 KB
testcase_36 AC 143 ms
14,256 KB
testcase_37 AC 194 ms
32,156 KB
testcase_38 AC 203 ms
21,928 KB
testcase_39 AC 167 ms
22,600 KB
testcase_40 AC 170 ms
22,076 KB
testcase_41 AC 161 ms
24,864 KB
testcase_42 AC 161 ms
24,936 KB
testcase_43 AC 117 ms
14,296 KB
testcase_44 AC 72 ms
16,628 KB
testcase_45 AC 143 ms
31,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define F first
#define S second
typedef long long ll;
typedef pair<ll,ll> P;
typedef pair<ll,P> PP;
ll bit[500010];
class BIT{
public:
  ll n;
  BIT(){fill(bit,bit+500010,0);}
  void add(ll i,ll x){
    while(i<=n){
      bit[i]+=x;
      i+=i&-i;
    }
  }
  ll sum(ll i){
    ll s=0;
    while(i>0){
      s+=bit[i];
      i-=i&-i;
    }
    return s;
  }
};
bool cmp(PP a, PP b) {
  if(a.F==b.F) return a.S.F<b.S.F;
  return a.F>b.F;
}

P p[111111];
ll d[111111];
vector<PP> a;
vector<ll> c[111111];
ll b[111111];

int main() {
  ios::sync_with_stdio(0);cin.tie(0);
  ll n,m;
  cin >> n;
  int aa[n],bb[n];
  for(int i=0;i<n;i++) cin >> aa[i];
  cin >> m;
  memset(bb,0,sizeof(bb));
  map<string,int> mm;ll k=0;
  for(int i=0; i<m; i++) {
    string s;
    char c;
    ll x,y;
    cin >> s >> c;
    if(!mm.count(s)) {
      mm[s]=k;
      k++;
    }
    x=mm[s];
    if(c=='?') y=-1;
    else {
      y=c-'A';
      bb[y]++;
      int z=50*aa[y]+50*aa[y]/(0.8+0.2*bb[y]);
      d[x]+=z;
      a.push_back(PP(d[x],P(i,x)));
    }
    p[i]=P(y,x);
  }
  for(int i=0; i<k; i++) a.push_back(PP(0,P(-1,i)));
  BIT t=BIT();
  t.n=a.size();
  sort(a.begin(),a.end(),cmp);
  for(int i=a.size()-1; i>=0; i--) c[a[i].S.S].push_back(i+1);
  for(int i=0; i<k; i++) {
    t.add(c[i][b[i]],1);
    b[i]++;
  }
  for(int i=0; i<m; i++) {
    ll x=p[i].S;
    if(p[i].F>=0) {
      t.add(c[x][b[x]-1],-1);
      t.add(c[x][b[x]],1);
      b[x]++;
    } else cout << t.sum(c[x][b[x]-1]) << endl;
  }
  return 0;
}
0