結果

問題 No.4 おもりと天秤
ユーザー FF256grhyFF256grhy
提出日時 2015-05-06 05:12:04
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 40 ms / 5,000 ms
コード長 968 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 23,808 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-26 09:11:30
合計ジャッジ時間 1,542 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 34 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 39 ms
5,376 KB
testcase_06 AC 34 ms
5,376 KB
testcase_07 AC 39 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 33 ms
5,376 KB
testcase_10 AC 40 ms
5,376 KB
testcase_11 AC 34 ms
5,376 KB
testcase_12 AC 34 ms
5,376 KB
testcase_13 AC 33 ms
5,376 KB
testcase_14 AC 34 ms
5,376 KB
testcase_15 AC 34 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 0 ms
5,376 KB
testcase_18 AC 38 ms
5,376 KB
testcase_19 AC 38 ms
5,376 KB
testcase_20 AC 37 ms
5,376 KB
testcase_21 AC 37 ms
5,376 KB
testcase_22 AC 37 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:10:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   10 |         scanf("%d", &n);
      |         ~~~~~^~~~~~~~~~
main.cpp:13:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   13 |                 scanf("%d", &w[i]);
      |                 ~~~~~^~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

int judge();

int w[128];
int bucket[4][8][5000];

int main(void) {
	int n;
	scanf("%d", &n);
	int i;
	for(i = 0; i < n; i++) {
		scanf("%d", &w[i]);
	}
	printf("%s%s\n", judge() ? "" : "im", "possible");
	return 0;
}

int judge() {
	int sum = 0, i, j, k, l;
	for(i = 0; i < 128; i++) {
		sum += w[i];
	}
	if(sum % 2) { return 0; }
	int half = sum / 2;
	
	for(i = 0; i < 8; i++) {
		for(j = 0; j < 65536; j++) {
			sum = 0;
			for(k = 0; k < 16; k++) {
				sum += w[i * 16 + k] * ( (j / (1 << k)) % 2 ); // 下からk bit目
			}
			if(sum == half) { return 1; }
			if(sum  < half) { bucket[3][i][sum] = 1; } // ここでタイポしてた...
		}
	}
	
	for(i = 3; 0 < i; i--) {
		for(j = 0; j < (1 << i); j += 2) {
			for(k = 0; k     <= half; k++) { if(bucket[i][j    ][k]) {
			for(l = 0; k + l <= half; l++) { if(bucket[i][j + 1][l]) {
				if(k + l == half) { return 1; }
				bucket[i - 1][j / 2][k + l] = 1;
			} }
			} }
		}
	}
	
	return 0;
}
0