結果

問題 No.9 モンスターのレベル上げ
ユーザー moyashi_senpaimoyashi_senpai
提出日時 2016-08-19 09:50:08
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 210 ms / 5,000 ms
コード長 951 bytes
コンパイル時間 827 ms
コンパイル使用メモリ 86,680 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-23 23:41:31
合計ジャッジ時間 3,169 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 210 ms
5,376 KB
testcase_03 AC 167 ms
5,376 KB
testcase_04 AC 88 ms
5,376 KB
testcase_05 AC 58 ms
5,376 KB
testcase_06 AC 21 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 27 ms
5,376 KB
testcase_09 AC 202 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 136 ms
5,376 KB
testcase_12 AC 107 ms
5,376 KB
testcase_13 AC 114 ms
5,376 KB
testcase_14 AC 205 ms
5,376 KB
testcase_15 AC 186 ms
5,376 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 AC 118 ms
5,376 KB
testcase_18 AC 98 ms
5,376 KB
testcase_19 AC 4 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:23:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   23 |         scanf("%d", &n);
      |         ~~~~~^~~~~~~~~~
main.cpp:28:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   28 |                 scanf("%d", &x);
      |                 ~~~~~^~~~~~~~~~
main.cpp:31:24: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   31 |         REP(i, n) scanf("%d", &b[i]);
      |                   ~~~~~^~~~~~~~~~~~~

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <vector>
#include <cmath>
#include <cstring>
#include <numeric>
#include <algorithm>
#include <functional>
#include <array>
#include <map>
#include <queue>
#include <limits.h>
#include <set>
#include <stack>
#define REP(i,n) for(int i = 0; n > i; i++)

using namespace std;
typedef vector<int> Ivec;
typedef pair<int, int> pii;

int main() {
	int n;
	scanf("%d", &n);
	priority_queue<pii, vector<pii>, greater<pii>> a;
	vector<int> b(n);
	REP(i, n) {
		int x;
		scanf("%d", &x);
		a.push({ x,0 });
	}
	REP(i, n) scanf("%d", &b[i]);
	int ans = 1501;
	REP(i, n) {
		priority_queue<pii, vector<pii>, greater<pii>> party = a;
		int Max = 0;
		for(int j = 0; n > j; j++) {
			int num = (i + j)%n;
			pii cur = party.top();
			cur = { cur.first + (b[num] / 2), cur.second + 1 };
			Max = max(Max, cur.second);
			party.pop();
			party.push(cur);
		}
		ans = min(ans, Max);
	}
	printf("%d\n", ans);
	return 0;
}
0