結果

問題 No.417 チューリップバブル
ユーザー FF256grhyFF256grhy
提出日時 2016-08-27 01:32:45
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,132 bytes
コンパイル時間 416 ms
コンパイル使用メモリ 23,808 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-08 18:32:32
合計ジャッジ時間 5,622 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
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 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 1 ms
5,248 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 4 ms
5,248 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:32:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   32 |         scanf("%d%d", &n, &m);
      |         ~~~~~^~~~~~~~~~~~~~~~
main.cpp:33:47: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   33 |         for(int i = 0; i < n    ; i++) { scanf("%d", &u[i]); }
      |                                          ~~~~~^~~~~~~~~~~~~
main.cpp:34:47: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   34 |         for(int i = 0; i < n - 1; i++) { scanf("%d%d%d", &a[i], &b[i], &c[i]); }
      |                                          ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

int n, m, u[200], a[199], b[199], c[199];
int ne[200][199], tm[200][199], ne_num[200];
int dp[200][2001];

void search(int x, int p) {
	for(int i = 0; i <= m; i++) { dp[x][i] = u[x]; }
	
	for(int i = 0; i < ne_num[x]; i++) { if(ne[x][i] != p) { search(ne[x][i], x); } }
	for(int i = 0; i < ne_num[x]; i++) {
		if(ne[x][i] != p) {
			int cp[2001];
			for(int j = 0; j <= m; j++) { cp[j] = dp[x][j]; }
			
			for(int s = 0; s <= m; s++) {
			for(int j = 0; j <= s; j++) {
				int v = dp[x][j] + dp[ ne[x][i] ][s - j];
				int t = s + tm[x][i] * 2;
				if(t <= m && dp[x][t] < v) { cp[t] = v; }
			}
			}
			
			for(int j = 0; j <= m; j++) { dp[x][j] = cp[j]; }
		}
	}
	
	return;
}

int main() {
	scanf("%d%d", &n, &m);
	for(int i = 0; i < n    ; i++) { scanf("%d", &u[i]); }
	for(int i = 0; i < n - 1; i++) { scanf("%d%d%d", &a[i], &b[i], &c[i]); }
	
	for(int i = 0; i < n - 1; i++) {
		ne[ a[i] ][ ne_num[ a[i] ]   ] = b[i];
		tm[ a[i] ][ ne_num[ a[i] ]++ ] = c[i];
		ne[ b[i] ][ ne_num[ b[i] ]   ] = a[i];
		tm[ b[i] ][ ne_num[ b[i] ]++ ] = c[i];
	}
	
	search(0, -1);
	
	printf("%d\n", dp[0][m]);
	
	return 0;
}
0