結果

問題 No.1246 ANDORゲーム(max)
ユーザー tnakao0123tnakao0123
提出日時 2020-10-03 14:07:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 570 ms / 2,000 ms
コード長 1,504 bytes
コンパイル時間 934 ms
コンパイル使用メモリ 102,368 KB
実行使用メモリ 202,580 KB
最終ジャッジ日時 2024-07-18 04:25:29
合計ジャッジ時間 8,869 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
8,320 KB
testcase_01 AC 3 ms
8,428 KB
testcase_02 AC 4 ms
8,280 KB
testcase_03 AC 3 ms
8,404 KB
testcase_04 AC 4 ms
8,440 KB
testcase_05 AC 3 ms
8,380 KB
testcase_06 AC 4 ms
8,300 KB
testcase_07 AC 4 ms
8,328 KB
testcase_08 AC 2 ms
8,480 KB
testcase_09 AC 3 ms
8,292 KB
testcase_10 AC 3 ms
8,380 KB
testcase_11 AC 14 ms
12,304 KB
testcase_12 AC 4 ms
8,968 KB
testcase_13 AC 6 ms
9,652 KB
testcase_14 AC 20 ms
14,744 KB
testcase_15 AC 20 ms
14,712 KB
testcase_16 AC 559 ms
200,640 KB
testcase_17 AC 570 ms
201,712 KB
testcase_18 AC 566 ms
202,452 KB
testcase_19 AC 565 ms
201,788 KB
testcase_20 AC 570 ms
202,472 KB
testcase_21 AC 564 ms
202,580 KB
testcase_22 AC 566 ms
202,532 KB
testcase_23 AC 25 ms
14,876 KB
testcase_24 AC 462 ms
201,660 KB
testcase_25 AC 464 ms
201,208 KB
testcase_26 AC 497 ms
201,288 KB
testcase_27 AC 32 ms
21,172 KB
testcase_28 AC 438 ms
195,032 KB
testcase_29 AC 441 ms
195,836 KB
testcase_30 AC 449 ms
194,372 KB
testcase_31 AC 52 ms
33,724 KB
testcase_32 AC 50 ms
33,612 KB
testcase_33 AC 56 ms
33,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 1246.cc:  No.1246 ANDORゲーム(max) - 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 = 100000;

/* typedef */

typedef long long ll;
typedef map<int,ll> mil;

/* global variables */

int as[MAX_N];
mil dp[MAX_N + 1];

/* subroutines */

/* main */

int main() {
  int n, t;
  scanf("%d%d", &n, &t);
  for (int i = 0; i < n; i++) scanf("%d", as + i);

  dp[0][t] = 0;
  for (int i = 0; i < n; i++) {
    mil &dp0 = dp[i], &dp1 = dp[i + 1];
    for (mil::iterator mit0 = dp0.begin(); mit0 != dp0.end(); mit0++) {
      int x0 = mit0->first;

      int ax = x0 & as[i];
      ll ad = mit0->second + abs(ax - x0);
      mil::iterator amit = dp1.find(ax);
      if (amit == dp1.end()) dp1[ax] = ad;
      else if (amit->second < ad) amit->second = ad;

      int ox = x0 | as[i];
      ll od = mit0->second + abs(ox - x0);
      mil::iterator omit = dp1.find(ox);
      if (omit == dp1.end()) dp1[ox] = od;
      else if (omit->second < od) omit->second = od;
    }
  }

  ll maxd = 0;
  for (mil::iterator mit = dp[n].begin(); mit != dp[n].end(); mit++)
    if (maxd < mit->second) maxd = mit->second;

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