結果
問題 | No.737 PopCount |
ユーザー | pazzle1230 |
提出日時 | 2018-09-29 00:53:21 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 1,496 bytes |
コンパイル時間 | 1,521 ms |
コンパイル使用メモリ | 170,596 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-12 07:49:39 |
合計ジャッジ時間 | 2,356 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 1 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 | 2 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 | 2 ms
5,248 KB |
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 <bits/stdc++.h> using namespace std; #define INF_LL (int64)1e18 #define INF (int32)1e9 #define REP(i, n) for(int64 i = 0;i < (n);i++) #define FOR(i, a, b) for(int64 i = (a);i < (b);i++) #define all(x) x.begin(),x.end() #define fs first #define sc second using int32 = int_fast32_t; using uint32 = uint_fast32_t; using int64 = int_fast64_t; using uint64 = uint_fast64_t; using PII = pair<int32, int32>; using PLL = pair<int64, int64>; const double eps = 1e-10; template<typename A, typename B>inline void chmin(A &a, B b){if(a > b) a = b;} template<typename A, typename B>inline void chmax(A &a, B b){if(a < b) a = b;} const int64 mod = 1e9+7; int64 N; vector<int32> bit; int64 sum[70][70][2], cnt[70][70][2]; PLL dfs(int32 rest, int32 dig = 0, bool tight = 1){ if(dig == bit.size()) return PLL(0, rest == 0); int64 &rets = sum[rest][dig][tight], &retc = cnt[rest][dig][tight]; if(~rets) return PLL(rets, retc); rets = 0; retc = 0; int32 lim = tight ? bit[dig] : 1; int64 val = (1LL << (bit.size()-dig-1))%mod; REP(i, lim+1){ if(i > rest) continue; PLL x = dfs(rest-(i == 1), dig+1, tight && i == lim); retc = (retc+x.sc)%mod; rets = (rets+x.fs+x.sc*val*(i==1)%mod)%mod; } return PLL(rets, retc); } int main(void){ cin >> N; memset(sum, -1, sizeof sum); memset(cnt, -1, sizeof cnt); while(N){ bit.push_back(N&1); N >>= 1; } reverse(all(bit)); int64 res = 0; FOR(i, 1, bit.size()+1){ res += dfs(i).fs*i%mod; res %= mod; } cout << res << endl; }