結果

問題 No.135 とりあえず1次元の問題
ユーザー HiroakiSoftwareHiroakiSoftware
提出日時 2015-01-26 00:11:04
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,569 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 27,112 KB
実行使用メモリ 13,940 KB
最終ジャッジ日時 2023-08-31 01:26:23
合計ジャッジ時間 12,815 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
evil01.txt -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:66:2: warning: ‘diff’ may be used uninitialized in this function [-Wmaybe-uninitialized]
  if ( diff == -1 ) diff = 0;
  ^~

ソースコード

diff #

#include <stdio.h>



int *pX = nullptr;
int N = 0;


int GetDiff ( int idx1 , int idx2 );


int main ( void ) {


	int *pBuf;
	int BufNums;

	scanf ( "%d" , &BufNums );

	pBuf = new int  [ BufNums ];
	pX =  new int  [ BufNums ];
	N = 0;


	for ( int i = 0; i < BufNums; i++ ) {
		scanf ( "%d" , pBuf + i );
	}

	bool bExistNumber;
	for ( int i = 0; i < BufNums; i++ ) {
		bExistNumber = false;

		for ( int j = 0; j < N; j++ ) {
			if ( *( pX + j ) == *( pBuf + i ) ) {

				bExistNumber = true;
				break;
			}

		}
		if ( bExistNumber == false ) {
			*( pX + N ) = *( pBuf + i );
			N++;
		}
	}

	int diff , diffbuf;

	for ( int i = 0; i < ( N - 1 ); i++ ) {
		//printf ( "Call\n" );
		if ( i == 0 ) {

			diff = GetDiff ( i , i + 1 );

		} else {
			diffbuf = GetDiff ( i , i + 1 );
			if ( diffbuf != -1 ) {
				if ( diffbuf < diff ) diff = diffbuf;
			}
		}
		if ( diff == 1 )break;
	}
	delete []pX;
	delete []pBuf;

	if ( diff == -1 ) diff = 0;
	printf ( "%d\n" , diff );
	return 0;
}

int GetDiff ( int idx1 , int idx2 ) {
	//printf ( "%d %d\n" , idx1 , idx2 );
	bool bEnableCurrent = false;
	int Current;

	if ( *( pX + idx1 ) != *( pX + idx2 ) ) {
		bEnableCurrent = true;
		Current = *( pX + idx1 ) - *( pX + idx2 );
		if ( Current < 0 ) Current *= -1;
		if ( Current == 1 ) return Current;
	}

	int diff= -1 , idxnext;

	idxnext = idx2 + 1;
	diff = ( idxnext < N ) ? GetDiff ( idx1 , idxnext ) : -1;

	if ( diff == 1 )return diff;

	if ( bEnableCurrent ) {
		if (diff != -1 )return ( Current < diff ) ? Current : diff;
		return Current;
	}
	return diff;

}
0