結果
問題 | No.9 モンスターのレベル上げ |
ユーザー | naimonon77 |
提出日時 | 2016-05-17 11:11:51 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,839 bytes |
コンパイル時間 | 1,847 ms |
コンパイル使用メモリ | 177,960 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-06 05:11:29 |
合計ジャッジ時間 | 6,407 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 438 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | AC | 164 ms
5,248 KB |
testcase_05 | AC | 108 ms
5,248 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 369 ms
5,248 KB |
testcase_12 | AC | 287 ms
5,248 KB |
testcase_13 | AC | 195 ms
5,248 KB |
testcase_14 | AC | 426 ms
5,248 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 242 ms
5,248 KB |
testcase_18 | AC | 183 ms
5,248 KB |
testcase_19 | AC | 5 ms
5,248 KB |
ソースコード
#define _CRT_SECURE_NO_WARNINGS #define _USE_MATH_DEFINES #include "bits/stdc++.h" #define REP(i,a,b) for(int i=a;i<b;++i) #define rep(i,n) REP(i,0,n) #define ll long long #define ull unsigned ll typedef long double ld; #define ALL(a) (a).begin(),(a).end() #define ifnot(a) if(not a) #define dump(x) cerr << #x << " = " << (x) << endl using namespace std; void reader(int &a) { scanf("%d", &a); } void reader(double &a) { scanf("%lf", &a); } void reader(char a[]) { scanf("%s", a); } void reader(char &a) { scanf(" %c", &a); } void reader(ll &a) { scanf("%lld", &a); } void reader(ull &a) { scanf("%llu", &a); } // void reader(string& a){cin >> a;}; template<class T, class U> void reader(T& t, U& u) { reader(t); reader(u); } template<class T, class U, class V> void reader(T& t, U& u, V& v) { reader(t); reader(u); reader(v); } void writer(const int a, char c) { printf("%d", a); putchar(c); } void writer(const ll a, char c) { printf("%lld", a); putchar(c); } void writer(const ull a, char c) { printf("%llu", a); putchar(c); } void writer(const double a, char c) { printf("%.20lf", a); putchar(c); } void writer(const char a[]) { printf("%s", a); }; void writer(const char a[], char c) { printf("%s", a); putchar(c); }; void writer(const char a, char c) { putchar(a); putchar(c); }; template<class T> void writerLn(T t) { writer(t, '\n'); } template<class T, class U> void writerLn(T t, U u) { writer(t, ' '); writer(u, '\n'); } template<class T, class U, class V> void writerLn(T t, U u, V v) { writer(t, ' '); writer(u, ' '); writer(v, '\n'); } template<class T> void writerArr(T x[], int n) { int i; if (!n) { putchar('\n'); return; }rep(i, n - 1) writer(x[i], ' '); writer(x[n - 1], '\n'); } template<class T> void writerVec(vector<T> x) { int n = x.size(); int i; if (!n) { putchar('\n'); return; }rep(i, n - 1) writer(x[i], ' '); writer(x[n - 1], '\n'); } vector<string> split(const string &str, char sep) { vector<string> v; stringstream ss(str); string buffer; while (getline(ss, buffer, sep)) { v.push_back(buffer); }return v; } // #define int ll bool test = 1; int dx[] = { 0,0,1,-1 }; int dy[] = { 1,-1,0,0 }; #define MAX 300000 //..................... ull mod = (int)1e9 + 7; #define P pair<int,int> signed main(void) { int N; int a[1500]; int b[1500]; cin >> N; rep(i, N) cin >> a[i]; rep(i, N) cin >> b[i]; int ans = INT_MAX; rep(i, N) { priority_queue<pair<int, int>, vector<P>, greater<P>> pq; rep(j, N) { pq.push(make_pair(a[j], 0)); } // first : level , second : 戦った回数 rep(j, N) { auto now = pq.top(); pq.pop(); now.first += b[(i + j) % 1500]/2; ++now.second; pq.push(now); } int ansi = 0; while (pq.size()) { if (ansi < pq.top().second) { ansi = pq.top().second; } pq.pop(); } if (ans > ansi) ans = ansi; } cout << ans << endl; return 0; }