結果

問題 No.449 ゆきこーだーの雨と雪 (4)
ユーザー 0w10w1
提出日時 2017-01-04 17:21:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 343 ms / 5,000 ms
コード長 2,534 bytes
コンパイル時間 2,301 ms
コンパイル使用メモリ 196,904 KB
実行使用メモリ 32,552 KB
最終ジャッジ日時 2024-09-22 10:32:46
合計ジャッジ時間 12,757 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 3 ms
6,944 KB
testcase_11 AC 3 ms
6,944 KB
testcase_12 AC 212 ms
14,680 KB
testcase_13 AC 278 ms
18,412 KB
testcase_14 AC 265 ms
16,576 KB
testcase_15 AC 281 ms
19,268 KB
testcase_16 AC 267 ms
17,256 KB
testcase_17 AC 263 ms
17,392 KB
testcase_18 AC 211 ms
14,532 KB
testcase_19 AC 264 ms
16,528 KB
testcase_20 AC 254 ms
16,384 KB
testcase_21 AC 263 ms
18,232 KB
testcase_22 AC 272 ms
18,552 KB
testcase_23 AC 210 ms
14,520 KB
testcase_24 AC 269 ms
17,396 KB
testcase_25 AC 209 ms
13,200 KB
testcase_26 AC 200 ms
11,724 KB
testcase_27 AC 277 ms
18,232 KB
testcase_28 AC 274 ms
18,320 KB
testcase_29 AC 263 ms
16,400 KB
testcase_30 AC 282 ms
19,280 KB
testcase_31 AC 276 ms
18,420 KB
testcase_32 AC 260 ms
16,440 KB
testcase_33 AC 268 ms
17,432 KB
testcase_34 AC 215 ms
13,108 KB
testcase_35 AC 272 ms
19,320 KB
testcase_36 AC 213 ms
13,252 KB
testcase_37 AC 343 ms
32,552 KB
testcase_38 AC 271 ms
23,336 KB
testcase_39 AC 236 ms
23,336 KB
testcase_40 AC 233 ms
23,336 KB
testcase_41 AC 289 ms
27,012 KB
testcase_42 AC 291 ms
27,012 KB
testcase_43 AC 185 ms
18,092 KB
testcase_44 AC 174 ms
21,176 KB
testcase_45 AC 217 ms
32,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
typedef vector< int > vi;
typedef vector< vi > vvi;
typedef vector< ll > vl;
typedef vector< vl > vvl;
typedef pair< int, int > pii;
typedef vector< pii > vp;
typedef vector< double > vd;
typedef vector< vd > vvd;
typedef vector< string > vs;

template< class T1, class T2 >
int upmin( T1 &x, T2 v ){
  if( x > v ){
    x = v;
    return 1;
  }
  return 0;
}

template< class T1, class T2 >
int upmax( T1 &x, T2 v ){
  if( x < v ){
    x = v;
    return 1;
  }
  return 0;
}

const int INF = 0x3f3f3f3f;

int N;
vi L;
int T;
vs name, P;


void init(){
  cin >> N;
  L = vi( N );
  for( int i = 0; i < N; ++i ){
    cin >> L[ i ];
  }
  cin >> T;
  name = P = vs( T );
  for( int i = 0; i < T; ++i ){
    cin >> name[ i ] >> P[ i ];
  }
}

vp vis_scr_clk;
map< pii, int > mp;

struct fenwick{
  vi dat;
  fenwick( int sz ){
    dat = vi( sz );
  }
  void update( int x, int v ){
    for( int i = x; i < dat.size(); i += i & -i ){
      dat[ i ] += v;
    }
  }
  int sum( int x ){
    int res = 0;
    for( int i = x; i > 0; i -= i & -i ){
      res += dat[ i ];
    }
    return res;
  }
} *ftree;

void preprocess(){
  vi prob_ac_cnt( N );
  map< string, pii > user2scr_clk;
  vis_scr_clk.emplace_back( 0, 0 );
  for( int i = 0; i < T; ++i ){
    if( P[ i ][ 0 ] == '?' ) continue;
    int p = P[ i ][ 0 ] - 'A';
    pii v = user2scr_clk[ name[ i ] ];
    v.first += 50 * L[ p ] + 500 * L[ p ] / ( 8 + 2 * ++prob_ac_cnt[ p ] );
    v.second = -i;
    user2scr_clk[ name[ i ] ] = v;
    vis_scr_clk.emplace_back( v );
  }
  sort( vis_scr_clk.begin(), vis_scr_clk.end() );
  vis_scr_clk.erase( unique( vis_scr_clk.begin(), vis_scr_clk.end() ), vis_scr_clk.end() );
  for( int i = 0; i < vis_scr_clk.size(); ++i ){
    mp[ vis_scr_clk[ i ] ] = i + 1;
  }
  ftree = new fenwick( vis_scr_clk.size() + 1 );
}

void solve(){
  vi prob_ac_cnt( N );
  map< string, pii > user2scr_clk;
  for( int i = 0; i < T; ++i ){
    if( P[ i ][ 0 ] == '?' ){
      pii v = user2scr_clk[ name[ i ] ];
      cout << ftree->sum( vis_scr_clk.size() ) - ftree->sum( mp[ v ] ) + 1 << endl;
    } else{
      int p = P[ i ][ 0 ] - 'A';
      pii v = user2scr_clk[ name[ i ] ];
      ftree->update( mp[ v ], -1 );
      v.first += 50 * L[ p ] + 500 * L[ p ] / ( 8 + 2 * ++prob_ac_cnt[ p ] );
      v.second = -i;
      user2scr_clk[ name[ i ] ] = v;
      ftree->update( mp[ v ], 1 );
    }
  }
}

signed main(){
  ios::sync_with_stdio( 0 );
  init();
  preprocess();
  solve();
  return 0;
}
0