코드1#include #include #include #include using namespace std;int n,k,cnt,a[26];vector v;string s;void FASTIO() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);}// 단어 몇 개를 읽을 수 있는지 확인하는 과정int go() { int temp = 0; bool check; for(string voca : v) { check = true; for(char sp : voca) { if(a[sp-'a'] == 0) { check = false; break; } } if(check) ..