結果

問題 No.822 Bitwise AND
ユーザー tnakao0123tnakao0123
提出日時 2019-04-28 19:06:46
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,654 bytes
コンパイル時間 619 ms
コンパイル使用メモリ 85,200 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-17 18:41:08
合計ジャッジ時間 1,278 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 WA -
testcase_07 AC 2 ms
6,816 KB
testcase_08 WA -
testcase_09 AC 1 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 1 ms
6,816 KB
testcase_12 WA -
testcase_13 AC 1 ms
6,820 KB
testcase_14 AC 1 ms
6,816 KB
testcase_15 WA -
testcase_16 AC 1 ms
6,816 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:72:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   72 |   scanf("%d%d", &n, &k);
      |   ~~~~~^~~~~~~~~~~~~~~~

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 822.cc:  No.822 Bitwise AND - yukicoder
 */

#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<iostream>
#include<string>
#include<vector>
#include<map>
#include<set>
#include<stack>
#include<list>
#include<queue>
#include<deque>
#include<algorithm>
#include<numeric>
#include<utility>
#include<complex>
#include<functional>
 
using namespace std;

/* constant */

const int MAX_N = 100;
const int BN = 24;
const int INF = 1 << 30;
const long long LINF = 1LL << 60;

/* typedef */

typedef long long ll;
typedef vector<int> vi;
typedef queue<int> qi;
typedef pair<int,int> pii;

/* global variables */

ll es[BN];

/* subroutines */

ll rec(int x, int i, int msk, int k) {
  while (i >= 0 && ! ((msk >> i) & 1)) i--;
  if (i < 0) return (x <= k) ? 1 : 0;

  if (x + msk <= k) return es[i + 1];
  if (x - msk > k) return 0;

  int bi = 1 << i;
  msk ^= bi;
  i--;

  ll sum = 0;
  sum += rec(x + bi, i, msk, k);
  sum += rec(x, i, msk, k);
  sum += rec(x - bi, i, msk, k);
  return sum;
}

/* main */

int main() {
  es[0] = 1;
  for (int i = 1; i < BN; i++) es[i] = es[i - 1] * 3;

  int n, k;
  scanf("%d%d", &n, &k);

  int msb = 1;
  for (; msb <= n; msb <<= 1);
  //printf("msb=%x\n", msb);

  if (msb - ((msb - 1) ^ n) <= k) {
    puts("INF");
    return 0;
  }

  ll cnt = 1;
  int msk = 0;
  for (int i = 0, bi = 1; bi < msb; i++, bi <<= 1)
    if (! (n & bi)) {
      if (bi - msk > k) break;

      ll c = rec(bi, i - 1, msk, k);
      //printf("rec(%d, %d, %d, %d) = %lld\n", bi, i - 1, msk, k, c);
      cnt += c;
      
      msk |= bi;
    }

  printf("%lld\n", cnt);
  return 0;
}
0