結果

問題 No.2510 Six Cube Sum Counting
ユーザー tnakao0123tnakao0123
提出日時 2024-06-20 10:02:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,354 bytes
コンパイル時間 1,044 ms
コンパイル使用メモリ 77,548 KB
実行使用メモリ 219,464 KB
最終ジャッジ日時 2024-06-20 10:02:59
合計ジャッジ時間 11,904 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2510.cc:  No.2510 Six Cube Sum Counting - yukicoder
 */

#include<cstdio>
#include<map>
#include<bitset>
#include<algorithm>
 
using namespace std;

/* constant */

const int MAX_A = 300;
const int BN = 9 * 10;

/* typedef */

using btst = bitset<BN>;
using mibt = map<int,btst>;

/* global variables */

/* subroutines */

/* main */

int main() {
  int x;
  scanf("%d", &x);

  btst msk((1ULL << 9) - 1);
  mibt scs;
  for (int a = 0; a <= MAX_A; a++) {
    int a3 = a * a * a;
    for (int b = a; b <= MAX_A; b++) {
      int b3 = b * b * b;
      for (int c = b; c <= MAX_A; c++) {
	int s = a3 + b3 + c * c * c;
	auto mit = scs.find(s);
	if (mit == scs.end()) {
	  btst bt = ~msk | btst(c);
	  scs[s] = bt;
	}
	else {
	  mit->second = (mit->second << 9) | btst(c);
	}
      }
    }
  }

  int cnt = 0;
  for (int d = 0; d <= MAX_A; d++) {
    int d3 = d * d * d;
    for (int e = d; e <= MAX_A; e++) {
      int e3 = e * e * e;
      for (int f = e; f <= MAX_A; f++) {
	int s = d3 + e3 + f * f * f;
	if (s <= x) {
	  auto mit = scs.find(x - s);
	  if (mit != scs.end()) {
	    btst bt = mit->second;
	    for (;;) {
	      btst bi = bt & msk;
	      if (bi == msk) break;
	      int c = bi.to_ulong();
	      if (c <= d) cnt++;
	      bt >>= 9;
	    }
	  }
	}
      }
    }
  }

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