結果

問題 No.343 手抜き工事のプロ
ユーザー FF256grhyFF256grhy
提出日時 2015-08-04 17:53:06
言語 C++11
(gcc 11.4.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 963 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 23,296 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-18 01:17:06
合計ジャッジ時間 9,327 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
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,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 0 ms
6,940 KB
testcase_08 AC 0 ms
6,940 KB
testcase_09 AC 0 ms
6,940 KB
testcase_10 AC 0 ms
6,944 KB
testcase_11 AC 0 ms
6,944 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 26 ms
6,940 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 0 ms
6,940 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 1 ms
6,940 KB
testcase_19 AC 0 ms
6,944 KB
testcase_20 AC 26 ms
6,940 KB
testcase_21 AC 270 ms
6,944 KB
testcase_22 AC 501 ms
6,940 KB
testcase_23 AC 971 ms
6,944 KB
testcase_24 AC 1,663 ms
6,944 KB
testcase_25 TLE -
testcase_26 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:15:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   15 |         scanf("%d%d", &n, &l);
      |         ~~~~~^~~~~~~~~~~~~~~~
main.cpp:24:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   24 |                 scanf("%d", &x[i]);
      |                 ~~~~~^~~~~~~~~~~~~

ソースコード

diff #

// 想定TLE解法

#include <stdio.h>

#define MAX_N 100000
#define MAX_L  10000
#define MAX_X   5000

int n, l, x[MAX_N];

int abs(int a) { return 0 < a ? a : -a; }

int main(void) {
	int i, j;
	scanf("%d%d", &n, &l);
	
	// assert
	if( ! ( 1 <= n && n <= MAX_N ) ) { return 0; }
	if( ! ( 1 <= l && l <= MAX_L ) ) { return 0; }
	
	// 色々と面倒なので, x[i] には上から i 番目を入れる
	x[n - 1] = 0;
	for(i = n - 2; 0 <= i; i--) {
		scanf("%d", &x[i]);
		
		// assert
		if( ! ( abs( x[i] ) <= MAX_X ) ) { return 0; }
	}
	
	int counter = 0;
	for(i = 1; i < n; i++) {
		if( l <= abs(x[i - 1] - x[i]) ) { counter = -1; break; }
		int sum = 0;
		for(j = 0; j < i; j++) { sum += x[j]; } // ここを毎回計算するので遅い
		if(
			// l/2 <= abs( sum/i - x[i] ) の両辺に 2i を掛けた
			i * l <= abs( 2 * sum - 2 * i * x[i] ) ||
			i * l <= abs( 2 * sum - 2 * i * x[i - 1] )
		) { counter++; }
	}
	printf("%d\n", counter);
	return 0;
}
0