結果

問題 No.2623 Room Allocation
ユーザー 唐揚げが壊わ唐揚げが壊わ
提出日時 2024-02-09 23:20:25
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 2,013 bytes
コンパイル時間 2,145 ms
コンパイル使用メモリ 209,960 KB
実行使用メモリ 26,708 KB
最終ジャッジ日時 2024-09-28 16:33:02
合計ジャッジ時間 5,096 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 1 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 68 ms
20,508 KB
testcase_07 AC 69 ms
20,416 KB
testcase_08 AC 69 ms
20,372 KB
testcase_09 AC 67 ms
20,356 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 133 ms
26,668 KB
testcase_15 AC 105 ms
14,200 KB
testcase_16 AC 26 ms
6,816 KB
testcase_17 AC 3 ms
6,816 KB
testcase_18 AC 106 ms
14,108 KB
testcase_19 AC 101 ms
13,400 KB
testcase_20 AC 105 ms
13,952 KB
testcase_21 AC 105 ms
14,200 KB
testcase_22 AC 76 ms
11,408 KB
testcase_23 AC 47 ms
7,808 KB
testcase_24 AC 107 ms
14,148 KB
testcase_25 AC 86 ms
12,028 KB
testcase_26 AC 8 ms
6,816 KB
testcase_27 WA -
testcase_28 AC 49 ms
11,520 KB
testcase_29 AC 24 ms
7,168 KB
testcase_30 WA -
testcase_31 AC 8 ms
6,816 KB
testcase_32 AC 9 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ld = long double;
using vll = vector<long long>;
using vvll = vector<vector<long long>>;
using vvvll = vector<vector<vector<long long>>>;
using vvvvll = vector<vector<vector<vector<long long>>>>;
using vpll = vector<pair<ll, ll>>;
using vs = vector<string>;
using vb = vector<bool>;
using vvb = vector<vector<bool>>;
using pll = pair<ll, ll>;
#define REP(i, n) for (long long i = 0; i < n; i++)
#define REP2(i, n, m) for (long long i = n; i < m; i++)
#define REPv(v) for (auto itr = v.begin(); itr != v.end(); itr++)
#define REPIN(v) \
  for (long long i = 0; i < (long long)v.size(); i++) cin >> v[i];
#define been(vec) vec.begin(), vec.end()
#define LIN      \
  = []() {       \
    long long x; \
    cin >> x;    \
    return x;    \
  }()
#define SIN   \
  = []() {    \
    string x; \
    cin >> x; \
    return x; \
  }()
#define SPNL(i, SIZE) (i + 1 == SIZE ? '\n' : ' ')
ll gcd(ll x, ll y) { return (x % y) ? gcd(y, x % y) : y; }
ll lcm(ll x, ll y) { return x / gcd(x, y) * y; }
bool chmin(ll &a, const ll &b) { return (a > b && ((a = b) | 1)); }
bool chmax(ll &a, const ll &b) { return (a < b && ((a = b) | 1)); }

using namespace std;
int main() {
  ll n LIN, x LIN, y LIN;
  ll nd = min(x + y, n);
  vvll pc(n, {0, 0});
  REP(i, n) {
    char tmp;
    cin >> pc[i][0] >> tmp;
    pc[i][1] = tmp;
  }
  // (x+y)k
  ll roomA = 0;
  vvll ide(nd, vll(2, 0));
  vll d(nd);
  REP(i, nd) {
    for (ll j = 0; i + j * (x + y) < n; j++) {
      ll I = i + j * (x + y);
      if (pc[I][1] == ll('A'))
        ide[i][0] += pc[I][0];
      else
        ide[i][1] += pc[I][0];
    }
    d[i] = ide[i][1] - ide[i][0];
    roomA += ide[i][0];
  }

  sort(been(d), [](ll a, ll b) { return a > b; });
  if (nd <= x) {
    REP(i, nd) {
      if (y == 0) {
        break;
      }
      if (d[i] >= 0) {
        roomA += d[i];
        y--;
      }
    }
  } else {
    REP(i, nd - x) { roomA += d[i]; }
  }
  cout << roomA << endl;
  return 0;
}
0