結果
問題 | No.737 PopCount |
ユーザー | RTIA1227 |
提出日時 | 2018-09-29 08:10:28 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,742 bytes |
コンパイル時間 | 1,180 ms |
コンパイル使用メモリ | 103,584 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-12 08:06:18 |
合計ジャッジ時間 | 2,118 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | WA | - |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | AC | 2 ms
5,248 KB |
ソースコード
#include<iostream> #include<vector> #include<algorithm> #include<functional> #include<queue> #include<stack> #include<set> #include<map> #include<unordered_map> #include<climits> #include<cstdlib> #include<cmath> #include<string> #include<iomanip> using namespace std; #define INF 1 << 29 #define LL long long int LL const MOD = 1000000007; int main(){ cin.tie(0); ios::sync_with_stdio(false); LL n; cin >> n; vector<vector<LL>> dpa(60,vector<LL>(60,0)),dpb(60,vector<LL>(60,0)); dpa[0][0] = 1; LL x = 1; for(int i = 1; i < 60; i++){ for(int j = 0; j < 60; j++){ dpa[i][j] += dpa[i-1][j]; dpa[i][j] %= MOD; if(j > 0){ dpa[i][j] += dpa[i-1][j-1]; dpa[i][j] %= MOD; } } } for(int i = 1; i < 60 && x <= n; i++){ for(int j = 0; j <= i; j++){ dpb[i][j] += dpb[i-1][j]; if(j > 0){ dpb[i][j] += ((dpa[i-1][j-1]*x)%MOD + dpb[i-1][j-1])%MOD; dpb[i][j] %= MOD; } } x *= 2; x %= MOD; } LL bitlen = 1; LL b = 2; while(b <= n){ bitlen++; b *= 2; } LL ans = 0; LL pos = 0; LL y = 0; LL t = 1; for(int i = 1; i < bitlen; i++){ t *= 2; } for(int i = bitlen; i > 0; i--){ if(t&n){ for(int j = 0; j <= i; j++){ ans += (((j+pos)%MOD)*((dpb[i-1][j]+(y*dpa[i-1][j])%MOD)%MOD))%MOD; ans %= MOD; } pos++; y += t%MOD; y %= MOD; } t /= 2; } ans += (pos*n)%MOD; ans %= MOD; cout << ans << endl; return 0; }