結果

問題 No.576 E869120 and Rings
ユーザー chocoruskchocorusk
提出日時 2019-07-08 00:22:50
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 870 ms / 1,500 ms
コード長 1,264 bytes
コンパイル時間 1,336 ms
コンパイル使用メモリ 101,972 KB
実行使用メモリ 13,348 KB
最終ジャッジ日時 2024-10-05 21:35:25
合計ジャッジ時間 14,318 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 816 ms
12,708 KB
testcase_01 AC 771 ms
12,960 KB
testcase_02 AC 848 ms
12,832 KB
testcase_03 AC 870 ms
12,832 KB
testcase_04 AC 785 ms
12,704 KB
testcase_05 AC 808 ms
12,964 KB
testcase_06 AC 773 ms
12,964 KB
testcase_07 AC 858 ms
12,964 KB
testcase_08 AC 352 ms
12,956 KB
testcase_09 AC 311 ms
12,772 KB
testcase_10 AC 339 ms
12,576 KB
testcase_11 AC 331 ms
12,704 KB
testcase_12 AC 321 ms
12,836 KB
testcase_13 AC 238 ms
12,596 KB
testcase_14 AC 249 ms
13,216 KB
testcase_15 AC 206 ms
12,596 KB
testcase_16 AC 271 ms
12,468 KB
testcase_17 AC 256 ms
13,348 KB
testcase_18 AC 291 ms
12,960 KB
testcase_19 AC 281 ms
12,708 KB
testcase_20 AC 306 ms
12,836 KB
testcase_21 AC 288 ms
12,832 KB
testcase_22 AC 6 ms
11,392 KB
testcase_23 AC 6 ms
11,392 KB
testcase_24 AC 7 ms
11,520 KB
testcase_25 AC 6 ms
11,392 KB
testcase_26 AC 6 ms
11,392 KB
testcase_27 AC 6 ms
11,392 KB
testcase_28 AC 6 ms
11,264 KB
testcase_29 AC 6 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;

int main()
{
    int n, k;
    cin>>n>>k;
    string a;
    cin>>a;
    a+=a;
    double x1=0, x2=1;
    for(int t=0; t<50; t++){
        double x=(x1+x2)/2;
        double s[1000010];
        s[0]=0;
        deque<int> deq;
        for(int i=0; i<2*n; i++){
            if(a[i]=='1') s[i+1]=s[i]+1-x;
            else s[i+1]=s[i]-x;
        }
        bool ok=0;
        for(int i=k; i<=2*n; i++){
            while(!deq.empty()){
                if(s[deq.back()]<=s[i]) deq.pop_back();
                else break;
            }
            deq.push_back(i);
            if(i>=n && s[deq.front()]>=s[i-n]){
                ok=1;
                break;
            }
            if(deq.front()==i-n+k) deq.pop_front();
        }
        if(ok) x1=x;
        else x2=x;
    }
    printf("%.7lf\n", x1);
    return 0;
}
0