Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
116701 梁乃元 零钱兑换 C++ 解答错误 25 0 MS 356 KB 520 2023-12-18 13:32:23

Tests(1/4):


# include <bits/stdc++.h> using namespace std ; int w [114] , f [114514] ; int main ( ) { int n , m ; cin >> m >> n ; for ( int i = 1 ; i <= m ; i ++ ) { cin >> w [i] ; } memset ( f , 1000000000 , 114514 ) ; for( int i = 1 ; i <= n ; i ++ ) { for ( int j = 1 ; j <= m ; j ++ ) { if ( i - w [j] >= 0 ) { f [i] = min ( f [i] , f [i - w [j]] + 1 ) ; } } } if ( f [n] == 100000000 ) { cout << -1 << endl ; } else { cout << f [n] << endl ; } return 0; }


测评信息: