結果

問題 No.78 クジ付きアイスバー
ユーザー parukiparuki
提出日時 2018-01-12 20:10:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,197 bytes
コンパイル時間 2,251 ms
コンパイル使用メモリ 164,088 KB
実行使用メモリ 7,640 KB
最終ジャッジ日時 2023-08-25 15:49:14
合計ジャッジ時間 8,915 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,384 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,384 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define FOR(i,j,k) for(int (i)=(j);(i)<(int)(k);++(i))
#define rep(i,j) FOR(i,0,j)
#define each(x,y) for(auto &(x):(y))
#define mp make_pair
#define mt make_tuple
#define all(x) (x).begin(),(x).end()
#define debug(x) cout<<#x<<": "<<(x)<<endl
#define smax(x,y) (x)=max((x),(y))
#define smin(x,y) (x)=min((x),(y))
#define MEM(x,y) memset((x),(y),sizeof (x))
#define sz(x) (int)(x).size()
#define pb push_back
typedef long long ll;
typedef pair<int, int> pii;
typedef vector<int> vi;
typedef vector<ll> vll;

ll K;
int N, sm[51];

ll nex(ll x, ll y) {
    ll z = y / N*sm[N];
    ll l = x%N, r = (x + y) % N;
    if (l < r)z += sm[r] - sm[l];
    if (l > r) {
        z += sm[N] - sm[l] + sm[r];
    }
    return z;
}

bool f(ll x) {
    ll p = 0, q = x, r = 1;
    while (q > 0 && p < K) {
        r = nex(p, q);
        p += q;
        q = r;
    }
    return p >= K;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    string S;
    cin >> N >> K >> S;

    rep(i, N)sm[i + 1] = sm[i] + (S[i] - '0');

    ll l = 0, r = K;
    while (r - l > 1) {
        ll m = (l + r) / 2;
        (f(m) ? r : l) = m;
    }
    cout << r << endl;
}
0