結果
| 問題 |
No.3281 Pacific White-sided Dolphin vs Monster
|
| コンテスト | |
| ユーザー |
沙耶花
|
| 提出日時 | 2025-09-26 21:27:56 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 286 ms / 2,000 ms |
| コード長 | 724 bytes |
| コンパイル時間 | 4,284 ms |
| コンパイル使用メモリ | 255,424 KB |
| 実行使用メモリ | 7,720 KB |
| 最終ジャッジ日時 | 2025-10-03 17:35:12 |
| 合計ジャッジ時間 | 9,329 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 51 |
ソースコード
#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000005
#define Inf64 1000000000000000001LL
int main(){
int n;
cin>>n;
vector<long long> h(n);
rep(i,n)cin>>h[i];
long long ok = n + 70,ng = 0;
while(ok-ng>1LL){
long long mid = (ok+ng)/2;
long long c = mid;
priority_queue<long long> q;
rep(i,n)q.push(h[i]);
while(c>0 && q.size()>0){
c--;
long long t = q.top();
q.pop();
if(c > 61){
continue;
}
if(t <= 1LL<<c)continue;
q.push(t - (1LL<<c));
}
if(q.size()>0)ng = mid;
else ok = mid;
}
cout<<ok<<endl;
return 0;
}
沙耶花