20920 영단어 암기는 괴로워 문제풀이 #include #include #include #include using namespace std; void fast_io(void) { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); } bool cmp(pair &a, pair &b) { if (a.second==b.second) { if (a.first.length()==b.first.length()) return a.first b.first.length(); } return a.second > b.second; } int n, m; unordered_map v; int ma..