結果

問題 No.247 線形計画問題もどき
ユーザー Kmcode1Kmcode1
提出日時 2015-07-17 22:56:01
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,792 ms / 2,000 ms
コード長 1,860 bytes
コンパイル時間 2,292 ms
コンパイル使用メモリ 202,944 KB
実行使用メモリ 12,956 KB
最終ジャッジ日時 2024-07-08 09:22:07
合計ジャッジ時間 10,040 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 311 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 41 ms
12,956 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 11 ms
5,376 KB
testcase_08 AC 9 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 384 ms
5,540 KB
testcase_18 AC 23 ms
5,376 KB
testcase_19 AC 862 ms
6,008 KB
testcase_20 AC 1,792 ms
10,028 KB
testcase_21 AC 82 ms
5,376 KB
testcase_22 AC 209 ms
5,376 KB
testcase_23 AC 103 ms
5,376 KB
testcase_24 AC 1,787 ms
10,612 KB
testcase_25 AC 1,291 ms
8,528 KB
testcase_26 AC 57 ms
5,376 KB
testcase_27 AC 111 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:36:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   36 |         scanf("%d", &c);
      |         ~~~~~^~~~~~~~~~
main.cpp:37:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   37 |         scanf("%d", &n);
      |         ~~~~~^~~~~~~~~~
main.cpp:40:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   40 |                 scanf("%d", &a);
      |                 ~~~~~^~~~~~~~~~

ソースコード

diff #

#include<iostream>
#include<cstdio>
#include<cstring>
#include<string>
#include<cctype>
#include<cstdlib>
#include<algorithm>
#include<bitset>
#include<vector>
#include<list>
#include<deque>
#include<queue>
#include<map>
#include<set>
#include<stack>
#include<cmath>
#include<sstream>
#include<fstream>
#include<iomanip>
#include<ctime>
#include<complex>
#include<functional>
#include<climits>
#include<cassert>
#include<iterator>
#include<immintrin.h>
#include<unordered_map>
using namespace std;
int c;
int n;
#define MAX 100002
vector<int> v;
unordered_map<int, vector<pair<int,int> > > dp;
int su[MAX];
int main(){
	scanf("%d", &c);
	scanf("%d", &n);
	for (int i = 0; i < n; i++){
		int a;
		scanf("%d", &a);
		v.push_back(a);
	}
	sort(v.begin(), v.end());
	v.erase(unique(v.begin(), v.end()),v.end());
	dp[0].push_back(make_pair(0, 0));
	for (int i = 0; i < v.size(); i++){
		for (int j = 0; j <= c; j++){
			int ind = j%v[i];
			if (dp.count(ind) == 0){
				su[j] = INT_MAX;
				continue;
			}
			int ind2 = upper_bound(dp[ind].begin(), dp[ind].end(), make_pair(j, INT_MAX)) - dp[ind].begin();
			ind2--;
			if (ind2 < 0){
				su[j] = INT_MAX;
				continue;
			}
			int val = dp[ind][ind2].first;
			int sa = abs(val - j);
			sa /= v[i];
			sa += dp[ind][ind2].second;
			su[j] = sa;
		}
		dp.clear();
		if (i + 1 == v.size()){
			break;
		}
		for (int j = 0; j <= c; j++){
			if (su[j] == INT_MAX){
				continue;
			}
			dp[j%v[i + 1]].push_back(make_pair(j,su[j]));
		}
		for (int j = 0; j < v[i + 1]; j++){
			if (dp.count(j)){
				sort(dp[j].begin(), dp[j].end());
				for (int k = 1; k < dp[j].size(); k++){
					dp[j][k].second = min(dp[j][k].second, dp[j][k - 1].second + abs(dp[j][k - 1].first - dp[j][k].first) / v[i + 1]);
				}
			}
		}
	}
	int ans = su[c];
	if (ans == INT_MAX){
		puts("-1");
		return 0;
	}
	cout << ans << endl;
	return 0;
}
0