結果

問題 No.1288 yuki collection
ユーザー chocoruskchocorusk
提出日時 2021-02-21 00:32:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3,502 ms / 5,000 ms
コード長 1,316 bytes
コンパイル時間 3,672 ms
コンパイル使用メモリ 205,544 KB
実行使用メモリ 116,012 KB
最終ジャッジ日時 2024-09-18 23:20:48
合計ジャッジ時間 29,885 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 3 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 664 ms
59,564 KB
testcase_14 AC 731 ms
59,284 KB
testcase_15 AC 499 ms
49,448 KB
testcase_16 AC 507 ms
48,908 KB
testcase_17 AC 754 ms
58,724 KB
testcase_18 AC 736 ms
59,924 KB
testcase_19 AC 728 ms
58,660 KB
testcase_20 AC 802 ms
61,728 KB
testcase_21 AC 1,659 ms
91,264 KB
testcase_22 AC 1,704 ms
90,128 KB
testcase_23 AC 2,204 ms
90,112 KB
testcase_24 AC 758 ms
60,924 KB
testcase_25 AC 718 ms
61,288 KB
testcase_26 AC 772 ms
60,840 KB
testcase_27 AC 260 ms
33,876 KB
testcase_28 AC 366 ms
47,284 KB
testcase_29 AC 305 ms
54,056 KB
testcase_30 AC 74 ms
57,060 KB
testcase_31 AC 92 ms
59,072 KB
testcase_32 AC 92 ms
57,952 KB
testcase_33 AC 2,313 ms
115,520 KB
testcase_34 AC 1,087 ms
62,856 KB
testcase_35 AC 926 ms
59,128 KB
testcase_36 AC 661 ms
59,992 KB
testcase_37 AC 715 ms
59,700 KB
testcase_38 AC 3,502 ms
115,256 KB
testcase_39 AC 1,064 ms
116,012 KB
testcase_40 AC 54 ms
55,916 KB
testcase_41 AC 2 ms
6,940 KB
testcase_42 AC 1 ms
6,944 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>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#include <list>
#include <atcoder/all>
#define popcount __builtin_popcount
using namespace std;
using namespace atcoder;
typedef long long ll;
typedef pair<int, int> P;
int n;
string str;
ll v[3030];
int main()
{
    cin>>n;
    cin>>str;
    for(int i=0; i<n; i++) cin>>v[i];
	int s=2*n, t=2*n+1;
    mcf_graph<ll, ll> g(2*n+2);
    const ll INF=1e9+7;
    for(int i=0; i<n; i++){
        if(str[i]=='y') g.add_edge(s, 2*i, 1, 0);
        g.add_edge(2*i, 2*i+1, 1, INF-v[i]);
        if(str[i]=='i') g.add_edge(2*i+1, t, 1, 0);
    }
    for(int i=0; i<n; i++){
        for(int j=0; j<i; j++){
            if((str[j]=='y' && str[i]=='u') || (str[j]=='u' && str[i]=='k') || (str[j]=='k' && str[i]=='i')){
                g.add_edge(2*j+1, 2*i, 1, 0);
            }
        }
    }
    g.add_edge(s, t, n/4, INF*4);
    cout<<INF*(n/4)*4-g.flow(s, t, n/4).second<<endl;
    return 0;
}
0