結果

問題 No.771 しおり
ユーザー asugen0402asugen0402
提出日時 2019-04-26 14:56:52
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 3,903 bytes
コンパイル時間 562 ms
コンパイル使用メモリ 32,256 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-03 12:09:51
合計ジャッジ時間 1,968 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 0 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 WA -
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 0 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 WA -
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 WA -
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 AC 1 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
testcase_33 AC 1 ms
5,376 KB
testcase_34 AC 1 ms
5,376 KB
testcase_35 AC 1 ms
5,376 KB
testcase_36 AC 1 ms
5,376 KB
testcase_37 AC 1 ms
5,376 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 1 ms
5,376 KB
testcase_41 AC 1 ms
5,376 KB
testcase_42 AC 1 ms
5,376 KB
testcase_43 AC 1 ms
5,376 KB
testcase_44 AC 1 ms
5,376 KB
testcase_45 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <float.h>
#include <limits.h>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>

// 内部定数
#define D_BOOK_MAX		18										// 最大本数

// 内部構造体 - 本情報
typedef struct Book {
	int miPos;													// 栞位置
	int miTick;													// 厚さ
	int miDLCnt;												// 削除数 - 左側
	int miDRCnt;												// 削除数 - 右側
} Book;

// 内部構造体 - 距離情報
typedef struct Len {
	int miLen;													// 距離
	int miBLNo;													// 本 - 左側 0~
	int miBRNo;													// 本 - 右側 0~
} Len;

// 内部変数
static FILE *szpFpI;											// 入力
static Book sz1Book[D_BOOK_MAX];								// 本
static int siBCnt;												// 本数
static Len sz1Len[D_BOOK_MAX * D_BOOK_MAX];						// 距離
static int siLCnt;												// 距離数
static int siTLCnt;												// 本数 - 一番左
static int siTRCnt;												// 本数 - 一番右

// 内部変数 - テスト用
#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
fSortFnc(
	const void *pzpVal1			// <I> 値1
	, const void *pzpVal2		// <I> 値2
)
{
	Len *lzpVal1 = (Len *)pzpVal1;
	Len *lzpVal2 = (Len *)pzpVal2;

	// 距離降順
	if (lzpVal1->miLen > lzpVal2->miLen) {
		return -1;
	}
	else if (lzpVal1->miLen < lzpVal2->miLen) {
		return 1;
	}

	return 0;
}

// 実行メイン
int
fMain(
)
{
	int i, j;
	char lc1Buf[1024];

	// 本数 - 取得
	fgets(lc1Buf, sizeof(lc1Buf), szpFpI);
	sscanf(lc1Buf, "%d", &siBCnt);

	// 本 - 取得
	for (i = 0; i < siBCnt; i++) {
		fgets(lc1Buf, sizeof(lc1Buf), szpFpI);
		sscanf(lc1Buf, "%d%d", &sz1Book[i].miPos, &sz1Book[i].miTick);
	}

	// 距離 - セット
	for (i = 0; i < siBCnt; i++) {
		for (j = 0; j < siBCnt; j++) {
			if (i != j) {
				sz1Len[siLCnt].miLen = sz1Book[i].miTick - sz1Book[i].miPos + sz1Book[j].miPos;
				sz1Len[siLCnt].miBLNo = i;
				sz1Len[siLCnt].miBRNo = j;
				siLCnt++;
			}
		}
	}

	// 距離 - ソート
	qsort(sz1Len, siLCnt, sizeof(Len), fSortFnc);

	// 距離 - 削除
	for (i = 0; i < siLCnt; i++) {
		sz1Book[sz1Len[i].miBLNo].miDLCnt++;
		if (sz1Book[sz1Len[i].miBLNo].miDLCnt == siBCnt - 1) {
			if (siTLCnt == 0) {
				siTLCnt++;
			}
			else {
				break;
			}
		}

		sz1Book[sz1Len[i].miBRNo].miDRCnt++;
		if (sz1Book[sz1Len[i].miBRNo].miDRCnt == siBCnt - 1) {
			if (siTRCnt == 0) {
				siTRCnt++;
			}
			else {
				break;
			}
		}
	}

	return sz1Len[i].miLen;
}

// 1回実行
int
fOne(
)
{
	int liRet;
	char lc1Buf[1024];

	// データ - 初期化
	memset(sz1Book, 0, sizeof(sz1Book));						// 本
	siLCnt = 0;													// 距離数
	siTLCnt = 0;												// 本数 - 一番左
	siTRCnt = 0;												// 本数 - 一番右

	// 入力 - セット
#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

	// 実行メイン
	liRet = fMain();

	// 出力
	sprintf(lc1Buf, "%d\n", liRet);
	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;
}

0