結果

問題 No.771 しおり
ユーザー tnakao0123tnakao0123
提出日時 2018-12-26 10:39:13
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 285 ms / 2,000 ms
コード長 1,287 bytes
コンパイル時間 644 ms
コンパイル使用メモリ 86,708 KB
実行使用メモリ 22,100 KB
最終ジャッジ日時 2024-07-22 07:08:20
合計ジャッジ時間 4,962 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 270 ms
21,992 KB
testcase_01 AC 27 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 1 ms
6,940 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 125 ms
13,264 KB
testcase_26 AC 5 ms
6,944 KB
testcase_27 AC 28 ms
6,940 KB
testcase_28 AC 61 ms
8,880 KB
testcase_29 AC 27 ms
6,940 KB
testcase_30 AC 269 ms
21,940 KB
testcase_31 AC 273 ms
22,100 KB
testcase_32 AC 7 ms
6,940 KB
testcase_33 AC 267 ms
22,080 KB
testcase_34 AC 266 ms
22,004 KB
testcase_35 AC 8 ms
6,944 KB
testcase_36 AC 3 ms
6,944 KB
testcase_37 AC 3 ms
6,940 KB
testcase_38 AC 7 ms
6,944 KB
testcase_39 AC 3 ms
6,940 KB
testcase_40 AC 115 ms
13,392 KB
testcase_41 AC 262 ms
22,056 KB
testcase_42 AC 244 ms
21,956 KB
testcase_43 AC 28 ms
6,944 KB
testcase_44 AC 249 ms
21,968 KB
testcase_45 AC 285 ms
21,996 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:48:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   48 |   scanf("%d", &n);
      |   ~~~~~^~~~~~~~~~
main.cpp:49:36: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   49 |   for (int i = 0; i < n; i++) scanf("%d%d", as + i, bs + i);
      |                               ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 771.cc:  No.771 しおり - 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 = 18;
const int NBITS = 1 << MAX_N;
const int INF = 1 << 30;

/* typedef */

/* global variables */

int as[MAX_N], bs[MAX_N];
int dp[NBITS][MAX_N];

/* subroutines */

inline void setmin(int &a, int b) { if (a > b) a = b; }

/* main */

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

  int nbits = 1 << n;
  for (int bits = 0; bits < nbits; bits++)
    fill(dp[bits], dp[bits] + n, INF);
  for (int i = 0, bi = 1; i < n; i++, bi <<= 1) dp[bi][i] = 0;

  for (int bits = 1; bits < nbits; bits++)
    for (int i = 0; i < n; i++)
      for (int j = 0, bj = 1; j < n; j++, bj <<= 1)
	if (! (bits & bj))
	  setmin(dp[bits | bj][j], max(dp[bits][i], bs[i] - as[i] + as[j]));

  int mind = INF;
  for (int i = 0; i < n; i++)
    setmin(mind, dp[nbits - 1][i]);
  printf("%d\n", mind);
  return 0;
}
0