結果

問題 No.1110 好きな歌
ユーザー carrot46carrot46
提出日時 2020-07-10 21:36:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,191 ms / 5,000 ms
コード長 1,203 bytes
コンパイル時間 2,003 ms
コンパイル使用メモリ 175,372 KB
実行使用メモリ 104,004 KB
最終ジャッジ日時 2024-10-11 08:14:59
合計ジャッジ時間 45,157 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 3 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 4 ms
5,248 KB
testcase_15 AC 3 ms
5,248 KB
testcase_16 AC 4 ms
5,248 KB
testcase_17 AC 6 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 6 ms
5,248 KB
testcase_20 AC 6 ms
5,248 KB
testcase_21 AC 4 ms
5,248 KB
testcase_22 AC 5 ms
5,248 KB
testcase_23 AC 3 ms
5,248 KB
testcase_24 AC 1,133 ms
56,988 KB
testcase_25 AC 1,488 ms
83,804 KB
testcase_26 AC 777 ms
46,660 KB
testcase_27 AC 1,500 ms
83,788 KB
testcase_28 AC 726 ms
43,120 KB
testcase_29 AC 1,835 ms
91,308 KB
testcase_30 AC 529 ms
31,596 KB
testcase_31 AC 386 ms
26,864 KB
testcase_32 AC 1,923 ms
93,768 KB
testcase_33 AC 664 ms
43,088 KB
testcase_34 AC 1,038 ms
54,240 KB
testcase_35 AC 1,603 ms
84,236 KB
testcase_36 AC 103 ms
12,836 KB
testcase_37 AC 603 ms
42,772 KB
testcase_38 AC 1,785 ms
91,040 KB
testcase_39 AC 1,412 ms
83,628 KB
testcase_40 AC 1,070 ms
53,452 KB
testcase_41 AC 81 ms
12,760 KB
testcase_42 AC 1,515 ms
84,084 KB
testcase_43 AC 1,729 ms
87,844 KB
testcase_44 AC 1,689 ms
84,248 KB
testcase_45 AC 1,959 ms
94,280 KB
testcase_46 AC 1,849 ms
89,668 KB
testcase_47 AC 2,190 ms
104,004 KB
testcase_48 AC 1,909 ms
92,228 KB
testcase_49 AC 1,266 ms
58,520 KB
testcase_50 AC 1,913 ms
92,228 KB
testcase_51 AC 1,755 ms
85,316 KB
testcase_52 AC 1,929 ms
93,128 KB
testcase_53 AC 2,191 ms
103,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define reps(i,s,n) for(int i = s; i < n; i++)
#define rep(i,n) reps(i,0,n)
#define Rreps(i,n,e) for(int i = n - 1; i >= e; --i)
#define Rrep(i,n) Rreps(i,n,0)
#define ALL(a) a.begin(), a.end()
#define fi first
#define se second
typedef long long ll;
typedef vector<ll> vec;
typedef vector<vec> mat;

ll N,M,H,W,Q,K,A,B;
string S;
//const ll MOD = 998244353;
const ll MOD = (1e+9) + 7;
typedef pair<ll, ll> P;
const ll INF = (1LL<<58);


int main() {
    class BIT{
            ll n;
      		unordered_map<ll, ll> bitree;
        public:
        	BIT(unsigned long _n){
              n = _n;
            }
        	void add(ll id, ll x){
              while(id <= n){
                bitree[id] += x;
                id += id & -id;
              }
              return;
            }
        	ll sum(ll id){
              ll temp = 0;
              while(id > 0){
                temp += bitree[id];
                id -= id & -id;
              }
              return temp;
            }
      };
    cin>>N>>K;
    vec a(N);
    rep(i,N) cin>>a[i];
    BIT bit(ll(1e+9) + 10);
    rep(i,N) bit.add(a[i], 1);
    rep(i,N) cout<<bit.sum(a[i] - K)<<endl;
}
0