結果

問題 No.914 Omiyage
ユーザー tarattata1tarattata1
提出日時 2019-10-22 09:31:08
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 823 bytes
コンパイル時間 1,620 ms
コンパイル使用メモリ 165,612 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-24 16:19:04
合計ジャッジ時間 2,186 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 1 ms
6,944 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int a[10][10];

int main() {
    // 入力
	int n,m,k; cin >> n >> m >> k;
    int i,j;
	for(i=0; i<n; i++) {
		for(j=0; j<m; j++) {
			cin >> a[i][j];
		}
	}

    // 各国を訪問した後の消費金額としてありうるものをsetに登録
    set<int> z;
    z.insert(0);
    for(i=0; i<n; i++) {
        set<int> z0;       // 国 1,2,3,..,(i+1) を訪問し終わった段階での消費金額としてありうるものを列挙
        auto it=z.begin();
        for(; it!=z.end(); ++it) {
            for(j=0; j<m; j++) {
                int tmp=(*it)+a[i][j];
                if(tmp<=k) z0.insert(tmp);
            }
        }
        z.swap(z0);
    }
 
    if(z.empty()) cout << -1 << endl;
    else          cout << k-(*z.rbegin()) << endl;

    return 0;
}
0