結果
問題 |
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
|
実行時間 | 277 ms / 2,000 ms |
コード長 | 724 bytes |
コンパイル時間 | 3,564 ms |
コンパイル使用メモリ | 255,588 KB |
実行使用メモリ | 7,716 KB |
最終ジャッジ日時 | 2025-09-26 21:28:07 |
合計ジャッジ時間 | 8,784 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 50 |
ソースコード
#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; }