結果

問題 No.2000 Distanced Characters
ユーザー karinohitokarinohito
提出日時 2024-09-18 15:10:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 8 ms / 2,000 ms
コード長 672 bytes
コンパイル時間 2,204 ms
コンパイル使用メモリ 205,420 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-18 15:10:16
合計ジャッジ時間 2,900 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 8 ms
5,376 KB
testcase_09 AC 8 ms
5,376 KB
testcase_10 AC 7 ms
5,376 KB
testcase_11 AC 7 ms
5,376 KB
testcase_12 AC 6 ms
5,376 KB
testcase_13 AC 4 ms
5,376 KB
testcase_14 AC 5 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;


int main() {

    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    string S;
    cin>>S;
    vector<vector<ll>> D(26,vector<ll>(26)),C(26,vector<ll>(26,1e18));
    vector<ll> L(26,-1e8);
    ll N=S.size();
    for(int i=0;i<26;i++){
        for(int j=0;j<26;j++){
            cin>>D[i][j];
        }
    }
    for(int i=0;i<N;i++){
        int c=S[i]-'a';
        for(int j=0;j<26;j++){
            C[j][c]=min(C[j][c],i-L[j]);
        }
        L[c]=i;
    }
    for(int i=0;i<26;i++){
        for(int j=0;j<26;j++){
            cout<<(C[i][j]>=D[i][j]?"Y":"N")<<" \n"[j==25];
        }
    }
}
0