結果
問題 | No.771 しおり |
ユーザー | bal4u |
提出日時 | 2019-08-03 20:52:58 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 276 ms / 2,000 ms |
コード長 | 1,127 bytes |
コンパイル時間 | 397 ms |
コンパイル使用メモリ | 30,720 KB |
実行使用メモリ | 40,796 KB |
最終ジャッジ日時 | 2024-07-22 07:15:16 |
合計ジャッジ時間 | 4,878 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 264 ms
40,732 KB |
testcase_01 | AC | 33 ms
40,592 KB |
testcase_02 | AC | 11 ms
40,796 KB |
testcase_03 | AC | 12 ms
40,576 KB |
testcase_04 | AC | 12 ms
40,592 KB |
testcase_05 | AC | 12 ms
40,728 KB |
testcase_06 | AC | 12 ms
40,640 KB |
testcase_07 | AC | 12 ms
40,692 KB |
testcase_08 | AC | 12 ms
40,588 KB |
testcase_09 | AC | 11 ms
40,732 KB |
testcase_10 | AC | 11 ms
40,784 KB |
testcase_11 | AC | 11 ms
40,616 KB |
testcase_12 | AC | 11 ms
40,664 KB |
testcase_13 | AC | 11 ms
40,716 KB |
testcase_14 | AC | 12 ms
40,668 KB |
testcase_15 | AC | 11 ms
40,604 KB |
testcase_16 | AC | 11 ms
40,588 KB |
testcase_17 | AC | 12 ms
40,624 KB |
testcase_18 | AC | 12 ms
40,612 KB |
testcase_19 | AC | 11 ms
40,572 KB |
testcase_20 | AC | 11 ms
40,680 KB |
testcase_21 | AC | 11 ms
40,624 KB |
testcase_22 | AC | 11 ms
40,608 KB |
testcase_23 | AC | 12 ms
40,592 KB |
testcase_24 | AC | 11 ms
40,580 KB |
testcase_25 | AC | 120 ms
40,624 KB |
testcase_26 | AC | 14 ms
40,596 KB |
testcase_27 | AC | 35 ms
40,652 KB |
testcase_28 | AC | 68 ms
40,760 KB |
testcase_29 | AC | 35 ms
40,704 KB |
testcase_30 | AC | 263 ms
40,684 KB |
testcase_31 | AC | 259 ms
40,584 KB |
testcase_32 | AC | 16 ms
40,612 KB |
testcase_33 | AC | 254 ms
40,624 KB |
testcase_34 | AC | 255 ms
40,740 KB |
testcase_35 | AC | 17 ms
40,680 KB |
testcase_36 | AC | 13 ms
40,580 KB |
testcase_37 | AC | 12 ms
40,716 KB |
testcase_38 | AC | 16 ms
40,700 KB |
testcase_39 | AC | 13 ms
40,592 KB |
testcase_40 | AC | 115 ms
40,592 KB |
testcase_41 | AC | 248 ms
40,576 KB |
testcase_42 | AC | 231 ms
40,688 KB |
testcase_43 | AC | 36 ms
40,572 KB |
testcase_44 | AC | 240 ms
40,608 KB |
testcase_45 | AC | 276 ms
40,568 KB |
コンパイルメッセージ
main.c: In function 'in': main.c:8:14: warning: implicit declaration of function 'getchar_unlocked' [-Wimplicit-function-declaration] 8 | #define gc() getchar_unlocked() | ^~~~~~~~~~~~~~~~ main.c:13:24: note: in expansion of macro 'gc' 13 | int n = 0, c = gc(); | ^~
ソースコード
// yukicoder: No.771 しおり // 2019.8.3 bal4u #include <stdio.h> #include <string.h> #if 1 #define gc() getchar_unlocked() #else #define gc() getchar() #endif int in() { // 非負整数の入力 int n = 0, c = gc(); // while (isspace(c)) c = gc(); do n = 10 * n + (c & 0xf); while ((c = gc()) >= '0'); return n; } #define INF 0x77777777 #define MAX 19 int N; int a[MAX], b[MAX]; int dp[1<<MAX][MAX]; int d[MAX][MAX]; int calc(int N) { int s, u, v, x, ans; int lim = (1 << N)-1; memset(dp, INF, sizeof(dp)); for (u = 0; u < N; u++) dp[1<<u][u] = 0; for (s = 0; s <= lim; s++) { for (u = 0; u < N; u++) for (v = 0; v < N; v++) { if ((s>>v) & 1) continue; x = dp[s][u] >= d[u][v]? dp[s][u]: d[u][v]; int *p = &dp[s | (1<<v)][v]; if (x < *p) *p = x; } } ans = INF; for (u = lim; u >= 0; u--) { if (ans > dp[lim][u]) ans = dp[lim][u]; } return ans; } int main() { int i, j; N = in(); for (i = 0; i < N; i++) a[i] = in(), b[i] = in()-a[i]; for (i = 0; i < N; i++) for (j = i+1; j < N; j++) { d[i][j] = b[i] + a[j]; d[j][i] = b[j] + a[i]; } printf("%d\n", calc(N)); return 0; }