結果
問題 | No.545 ママの大事な二人の子供 |
ユーザー | asugen0402 |
提出日時 | 2019-04-16 16:24:31 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 4,009 bytes |
コンパイル時間 | 861 ms |
コンパイル使用メモリ | 31,872 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-22 08:18:48 |
合計ジャッジ時間 | 1,286 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | WA | - |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 1 ms
6,944 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
ソースコード
#include <float.h> #include <limits.h> #include <math.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <time.h> // 内部定数 #define D_ITM_MAX 32 // 最大品物数 #define D_PTN_CNT 2 // パターン種類数 #define D_PTN_MAX 70000 // 最大パターン数 // 内部構造体 - 品物情報 typedef struct Itm { long long mlA, mlB; // A, B } Itm; // 内部変数 static FILE *szpFpI; // 入力 static Itm sz1Itm[D_ITM_MAX]; // 品物 static int siICnt; // 品物数 static Itm sz2Ptn[D_PTN_CNT][D_PTN_MAX]; // パターン static int si1PCnt[D_PTN_CNT]; // パターン数 // 内部変数 - テスト用 #ifdef D_TEST static int siRes; static FILE *szpFpA; static int siTNo; #endif // 出力 int fOut( char *pcpLine // <I> 1行 ) { char lc1Buf[1024]; #ifdef D_TEST fgets(lc1Buf, sizeof(lc1Buf), szpFpA); if (strcmp(lc1Buf, pcpLine)) { siRes = -1; } #else printf("%s", pcpLine); #endif return 0; } // パターン - セット int fSetPtn( int piKind // <I> 種類 , int piNNo // <I> 現在位置 0~ , int piENo // <I> 終了位置 0~ , long long plA // <I> A合計 , long long plB // <I> B合計 ) { // 選択中 if (piNNo <= piENo) { // A fSetPtn(piKind, piNNo + 1, piENo, plA + sz1Itm[piNNo].mlA, plB); // B fSetPtn(piKind, piNNo + 1, piENo, plA, plB + sz1Itm[piNNo].mlB); return 0; } // パターン - セット sz2Ptn[piKind][si1PCnt[piKind]].mlA = plA; sz2Ptn[piKind][si1PCnt[piKind]].mlB = plB; si1PCnt[piKind]++; return 0; } // 差異 - 取得 long long fGetDF( int piNo1 // <I> 位置1 0~ , int piNo2 // <I> 位置2 0~ ) { return llabs(sz2Ptn[0][piNo1].mlA - sz2Ptn[0][piNo1].mlB + sz2Ptn[1][piNo2].mlA - sz2Ptn[1][piNo2].mlB); } // 実行メイン long long fMain( ) { int i; char lc1Buf[1024]; // 品物数 - 取得 fgets(lc1Buf, sizeof(lc1Buf), szpFpI); sscanf(lc1Buf, "%d", &siICnt); // 品物 - 取得 for (i = 0; i < siICnt; i++) { fgets(lc1Buf, sizeof(lc1Buf), szpFpI); sscanf(lc1Buf, "%lld%lld", &sz1Itm[i].mlA, &sz1Itm[i].mlB); } // 品物1つ if (siICnt == 1) { if (sz1Itm[0].mlA < sz1Itm[0].mlB) { return sz1Itm[0].mlA; } else { return sz1Itm[0].mlB; } } // パターン - セット int liNo = siICnt / 2 - 1; fSetPtn(0, 0, liNo, 0, 0); fSetPtn(1, liNo + 1, siICnt - 1, 0, 0); // 最小値 - 取得 long long llMin = LLONG_MAX; int liNo1 = 0; int liNo2 = si1PCnt[1] - 1; while (liNo1 < si1PCnt[0]) { // 現在パターンでの最小値 - 取得 long long llMin2 = fGetDF(liNo1, liNo2); while (liNo2 > 0) { liNo2--; long long llVal = fGetDF(liNo1, liNo2); if (llMin2 > llVal) { llMin2 = llVal; } else { liNo2++; break; } } // 最小値 - 更新 if (llMin > llMin2) { llMin = llMin2; } // 次のパターンへ liNo1++; } return llMin; } // 1回実行 int fOne( ) { long long llRet; char lc1Buf[1024]; // データ - 初期化 memset(si1PCnt, 0, sizeof(si1PCnt)); // パターン数 // 入力 - セット #ifdef D_TEST sprintf(lc1Buf, ".\\Test\\T%d.txt", siTNo); szpFpI = fopen(lc1Buf, "r"); sprintf(lc1Buf, ".\\Test\\A%d.txt", siTNo); szpFpA = fopen(lc1Buf, "r"); siRes = 0; #else szpFpI = stdin; #endif // 実行メイン llRet = fMain(); // 出力 sprintf(lc1Buf, "%lld\n", llRet); fOut(lc1Buf); // 残データ有無 #ifdef D_TEST lc1Buf[0] = '\0'; fgets(lc1Buf, sizeof(lc1Buf), szpFpA); if (strcmp(lc1Buf, "")) { siRes = -1; } #endif // テストファイルクローズ #ifdef D_TEST fclose(szpFpI); fclose(szpFpA); #endif // テスト結果 #ifdef D_TEST if (siRes == 0) { printf("OK %d\n", siTNo); } else { printf("NG %d\n", siTNo); } #endif return 0; } // プログラム開始 int main() { #ifdef D_TEST int i; for (i = D_TEST_SNO; i <= D_TEST_ENO; i++) { siTNo = i; fOne(); } #else fOne(); #endif return 0; }