結果

問題 No.2067 ±2^k operations
ユーザー 沙耶花沙耶花
提出日時 2022-09-02 22:42:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,743 ms / 2,000 ms
コード長 1,564 bytes
コンパイル時間 4,124 ms
コンパイル使用メモリ 262,316 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-16 05:03:03
合計ジャッジ時間 33,229 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,824 KB
testcase_01 AC 475 ms
6,816 KB
testcase_02 AC 480 ms
6,816 KB
testcase_03 AC 476 ms
6,820 KB
testcase_04 AC 469 ms
6,816 KB
testcase_05 AC 474 ms
6,816 KB
testcase_06 AC 306 ms
6,816 KB
testcase_07 AC 1,682 ms
6,820 KB
testcase_08 AC 1,689 ms
6,816 KB
testcase_09 AC 1,689 ms
6,816 KB
testcase_10 AC 1,691 ms
6,820 KB
testcase_11 AC 1,680 ms
6,816 KB
testcase_12 AC 1,693 ms
6,820 KB
testcase_13 AC 1,682 ms
6,820 KB
testcase_14 AC 1,684 ms
6,820 KB
testcase_15 AC 1,673 ms
6,816 KB
testcase_16 AC 1,676 ms
6,816 KB
testcase_17 AC 1,743 ms
6,820 KB
testcase_18 AC 1,731 ms
6,820 KB
testcase_19 AC 56 ms
6,816 KB
testcase_20 AC 69 ms
6,820 KB
testcase_21 AC 1,658 ms
6,816 KB
testcase_22 AC 1,715 ms
6,816 KB
testcase_23 AC 1,681 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 2000000000000000001

long long dp[2][30][30],ndp[2][30][30];

int main(){
	
	int _t;
	cin>>_t;
	
	rep(_,_t){
		
		long long N;
		cin>>N;
		//N = 1LL << 50;
		//vector dp(2,vector(30,vector<long long>(30,0)));
		rep(j,2){
			rep(k,30){
				rep(l,30){
					dp[j][k][l] = 0;
				}
			}
		}
		dp[0][0][2] = 1;
		bool f = false;
		for(int i=59;i>=0;i--){
			if((N>>i)&1){
				f = true;
			}
			else if(!f)continue;
			rep(j,2){
				rep(k,30){
					rep(l,30){
						ndp[j][k][l] = 0;
					}
				}
			}
			//vector ndp(2,vector(30,vector<long long>(30,0)));
			rep(j,2){
				rep(k,min(30,60-i)){
					rep(l,30){
						if(dp[j][k][l]==0)continue;
						
						rep(m,2){
							int nj = j,nk = 29,nl = 29;
							
							if(j==0 && ((N>>i)&1)==0 && m==1)continue;
							if(((N>>i)&1) && m==0)nj = 1;
							if(m==0){
								nk = min(nk,k);
								nl = min(nl,l+1);
								nk = min(nk,l);
							}
							else{
								nk = min(nk,k+1);
								nl = min(nl,l);
								nl = min(nl,k+2);
							}
							
							ndp[nj][nk][nl] += dp[j][k][l];
						}
						
						
					}
				}
			}
			swap(dp,ndp);
			
		}
		
		long long ans = 0;
		rep(i,2){
			rep(j,30){
				rep(k,30){
					//if(dp[i][j][k])cout<<i<<','<<j<<','<<k<<endl;
					
					ans += dp[i][j][k] * (long long) min(j,k);
				}
			}
		}
		
		cout<<ans<<endl;
		
	}
	
    return 0;
}
0