結果
問題 | No.2000 Distanced Characters |
ユーザー | Rubikun |
提出日時 | 2022-07-08 21:24:56 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 57 ms / 2,000 ms |
コード長 | 1,405 bytes |
コンパイル時間 | 2,409 ms |
コンパイル使用メモリ | 206,324 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-08 16:25:46 |
合計ジャッジ時間 | 2,907 ms |
ジャッジサーバーID (参考情報) |
judge1 / 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 | 2 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 | 2 ms
5,376 KB |
testcase_08 | AC | 4 ms
5,376 KB |
testcase_09 | AC | 57 ms
5,376 KB |
testcase_10 | AC | 27 ms
5,376 KB |
testcase_11 | AC | 6 ms
5,376 KB |
testcase_12 | AC | 13 ms
5,376 KB |
testcase_13 | AC | 12 ms
5,376 KB |
testcase_14 | AC | 14 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return true; } return false; } template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return true; } return false; } #define all(x) (x).begin(),(x).end() #define fi first #define se second #define mp make_pair #define si(x) int(x.size()) const int mod=1000000007,MAX=1005,INF=1<<30; int main(){ std::ifstream in("text.txt"); std::cin.rdbuf(in.rdbuf()); cin.tie(0); ios::sync_with_stdio(false); string S;cin>>S; vector<vector<int>> pos(26); for(int i=0;i<si(S);i++){ pos[S[i]-'a'].push_back(i); } vector<vector<int>> A(26,vector<int>(26)); for(int i=0;i<26;i++){ for(int j=0;j<26;j++){ cin>>A[i][j]; } } for(int i=0;i<26;i++){ for(int j=0;j<26;j++){ if(si(pos[i])==0||si(pos[j])==0){ cout<<"Y "; }else{ int b=0; bool ok=true; for(int a=0;a<si(pos[i]);a++){ while(b<si(pos[j])&&pos[i][a]>=pos[j][b]) b++; if(b==si(pos[j])) break; if(pos[j][b]-pos[i][a]<A[i][j]) ok=false; } if(ok) cout<<"Y "; else cout<<"N "; } } cout<<"\n"; } }