結果

問題 No.2617 容量3のナップザック
ユーザー tnakao0123tnakao0123
提出日時 2024-06-17 18:49:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,815 bytes
コンパイル時間 975 ms
コンパイル使用メモリ 58,092 KB
実行使用メモリ 23,500 KB
最終ジャッジ日時 2024-06-17 18:49:57
合計ジャッジ時間 6,060 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 WA -
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 78 ms
12,800 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 7 ms
6,940 KB
testcase_25 AC 79 ms
15,816 KB
testcase_26 AC 82 ms
13,108 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 47 ms
10,920 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 146 ms
22,736 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 145 ms
19,660 KB
testcase_40 WA -
testcase_41 AC 67 ms
20,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2617.cc:  No.2617 螳ケ驥・縺ョ繝翫ャ繝励じ繝・け - yukicoder
 */

#include<cstdio>
#include<vector>
#include<algorithm>
 
using namespace std;

/* constant */

const int MAX_N = 1000000;

/* typedef */

using ll = long long;
using vl = vector<ll>;

/* global variables */

int fs[MAX_N * 2];
vl wvs[4];

/* subroutines */

/* main */

int main() {
  int n, k, seed, a, b, m;
  scanf("%d%d%d%d%d%d", &n, &k, &seed, &a, &b, &m);

  for (int i = 0, f = seed; i < n * 2; i++) {
    fs[i] = f;
    f = ((ll)a * f + b) % m;
  }
  for (int i = 0; i < n; i++) {
    int w = fs[i] % 3 + 1;
    ll v = (ll)fs[n + i] * w;
    //printf(" %d,%lld", w, v);
    wvs[w].push_back(v);
  }
  //putchar('\n');
  for (int w = 1; w <= 3; w++) sort(wvs[w].begin(), wvs[w].end());

  ll sum = 0;
  int j1 = wvs[1].size() - 1;
  int j2 = wvs[2].size() - 1;
  int j3 = wvs[3].size() - 1;

  for (int i = 0; i < k; i++) {
    ll maxv = 0;
    int op = -1;
    if (j3 >= 0 && maxv < wvs[3][j3])
      maxv = wvs[3][j3], op = 0;
    if (j2 >= 0 && j1 >= 0 && maxv < wvs[2][j2] + wvs[1][j1])
      maxv = wvs[2][j2] + wvs[1][j1], op = 1;
    if (j1 >= 2 && maxv < wvs[1][j1] + wvs[1][j1 - 1] + wvs[1][j1 - 2])
      maxv = wvs[1][j1] + wvs[1][j1 - 1] + wvs[1][j1 - 2], op = 2;
    if (j2 >= 0 && maxv < wvs[2][j2])
      maxv = wvs[2][j2], op = 3;
    if (j1 >= 1 && maxv < wvs[1][j1] + wvs[1][j1 - 1])
      maxv = wvs[1][j1] + wvs[1][j1 - 1], op = 4;
    if (j1 >= 0 && maxv < wvs[1][j1])
      maxv = wvs[1][j1], op = 5;
    if (op < 0) break;

    sum += maxv;
    switch (op) {
    case 0: j3--; break;
    case 1: j2--, j1--; break;
    case 2: j1 -= 3; break;
    case 3: j2--; break;
    case 4: j1 -= 2; break;
    case 5: j1--; break;
    }
  }

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