結果

問題 No.2999 Long Long Friedrice
ユーザー tnakao0123tnakao0123
提出日時 2024-12-30 16:30:13
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 26 ms / 2,000 ms
コード長 851 bytes
コンパイル時間 723 ms
コンパイル使用メモリ 54,124 KB
実行使用メモリ 26,624 KB
最終ジャッジ日時 2024-12-30 16:30:25
合計ジャッジ時間 2,968 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
26,624 KB
testcase_01 AC 20 ms
26,496 KB
testcase_02 AC 26 ms
26,368 KB
testcase_03 AC 23 ms
26,624 KB
testcase_04 AC 20 ms
26,624 KB
testcase_05 AC 22 ms
26,496 KB
testcase_06 AC 21 ms
26,368 KB
testcase_07 AC 22 ms
26,624 KB
testcase_08 AC 24 ms
26,496 KB
testcase_09 AC 21 ms
26,624 KB
testcase_10 AC 22 ms
26,368 KB
testcase_11 AC 20 ms
26,496 KB
testcase_12 AC 21 ms
26,496 KB
testcase_13 AC 21 ms
26,368 KB
testcase_14 AC 20 ms
26,496 KB
testcase_15 AC 19 ms
26,368 KB
testcase_16 AC 20 ms
26,496 KB
testcase_17 AC 20 ms
26,496 KB
testcase_18 AC 20 ms
26,624 KB
testcase_19 AC 21 ms
26,496 KB
testcase_20 AC 21 ms
26,624 KB
testcase_21 AC 20 ms
26,496 KB
testcase_22 AC 18 ms
26,368 KB
testcase_23 AC 21 ms
26,496 KB
testcase_24 AC 23 ms
26,496 KB
testcase_25 AC 22 ms
26,368 KB
testcase_26 AC 21 ms
26,624 KB
testcase_27 AC 22 ms
26,368 KB
testcase_28 AC 21 ms
26,496 KB
testcase_29 AC 19 ms
26,368 KB
testcase_30 AC 20 ms
26,496 KB
testcase_31 AC 20 ms
26,496 KB
testcase_32 AC 20 ms
26,496 KB
testcase_33 AC 21 ms
26,624 KB
testcase_34 AC 22 ms
26,496 KB
testcase_35 AC 20 ms
26,368 KB
testcase_36 AC 22 ms
26,496 KB
testcase_37 AC 21 ms
26,624 KB
testcase_38 AC 23 ms
26,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2999.cc:  No.2999 Long Long Friedrice - yukicoder
 */

#include<cstdio>
#include<vector>
#include<algorithm>

using namespace std;

/* constant */

const int MAX_N = 2000;
const int MAX_M = 1000000;

/* typedef */

using vi = vector<int>;

/* global variables */

int as[MAX_N], bs[MAX_N];
vi nbrs[MAX_M];
bool ds[MAX_M];

/* subroutines */

/* main */

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

  int m = 0;
  for (int i = 0; i < n; i++) {
    nbrs[as[i]].push_back(as[i] + bs[i]);
    m = max(m, as[i] + bs[i]);
  }

  ds[0] = true;
  int maxu = 0;
  for (int u = 0; u <= m; u++)
    if (ds[u]) {
      maxu = u;
      for (auto v: nbrs[u]) ds[v] = true;
    }

  printf("%d\n", maxu + 1);
  
  return 0;
}
0