結果

問題 No.37 遊園地のアトラクション
ユーザー 184184
提出日時 2014-10-10 16:33:06
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 778 bytes
コンパイル時間 649 ms
コンパイル使用メモリ 65,668 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-09 15:42:27
合計ジャッジ時間 1,741 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 5 ms
5,376 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 6 ms
5,376 KB
testcase_17 WA -
testcase_18 AC 6 ms
5,376 KB
testcase_19 WA -
testcase_20 AC 6 ms
5,376 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 WA -
testcase_28 AC 1 ms
5,376 KB
testcase_29 WA -
testcase_30 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:21:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   21 |         scanf("%d%d",&t,&n);//%d%d%d%d",&n,&v,&x,&y,&ax,&ay);
      |         ~~~~~^~~~~~~~~~~~~~
main.cpp:23:34: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   23 |         for(int i=0;i<n;i++)scanf("%d",&c[i]);
      |                             ~~~~~^~~~~~~~~~~~
main.cpp:24:34: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   24 |         for(int i=0;i<n;i++)scanf("%d",&v[i]);
      |                             ~~~~~^~~~~~~~~~~~

ソースコード

diff #

#include <cstdlib>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <iostream>
#include <map>
#include <vector>
#include <queue>

using namespace std;


/*
184 //名前が 184
最強の解き方!!!いってみただけ。
no37
*/ 

int main(){
	int t,n;
	scanf("%d%d",&t,&n);//%d%d%d%d",&n,&v,&x,&y,&ax,&ay);
	int v[20],c[20];
	for(int i=0;i<n;i++)scanf("%d",&c[i]);
	for(int i=0;i<n;i++)scanf("%d",&v[i]);	
	int dp[100000]={};
	dp[0]=1;
	int last=0;
	srand(1);
	int max=0;
	for(int i=0;i<1000;i++){
		int cnt[20]={};
		int cs=0;
		int r;
		int vl=0;
		while(cs<=t){
			r=rand()%15;
			if(cs+c[r]>t)break;
			cs+=c[r];
			vl+=v[r]>>cnt[r]++;
		}
		if(max<vl)max=vl;
	}
	printf("%d\n",max);
	
	return 0;
} 
0