Submission #1075680

#TimeUsernameProblemLanguageResultExecution timeMemory
1075680ajayZigZag (COCI17_zigzag)C++14
80 / 80
96 ms8740 KiB
/* Ajay Jadhav */ #include <iostream> #include <cstdio> #include <algorithm> #include <deque> #include <vector> #include <cstdlib> #include <iomanip> #include <cmath> #include <queue> #include <map> #include <set> #include <stack> #include <ctime> #include <string.h> #include <climits> #include <cstring> using namespace std; #define ll long long #define pb push_back #define pii pair<int,int> #define vi vector<int> #define vii vector<pii> #define mi map<int,int> #define mii map<pii,int> #define all(a) (a).begin(),(a).end() #define x first #define y second #define sz(x) (int)x.size() #define hell 1000000007 #define rep(i,a,b) for(int i=a;i<b;i++) #define endl '\n' void solve() { int n, m; cin >> n >> m; map<char, priority_queue<pair<int, string>, vector<pair<int, string>>, greater<pair<int, string>>>> store; for (char i = 'a'; i <= 'z'; i++) { priority_queue<pair<int, string>, vector<pair<int, string>>, greater<pair<int, string>>> pq; store[i] = pq; } rep(i, 0, n) { string s; cin >> s; store[s[0]].push({0, s}); } rep(i, 0, m) { string s; cin >> s; pair<int, string> tp = store[s[0]].top(); store[s[0]].pop(); cout << tp.y << endl; store[s[0]].push({tp.x + 1, tp.y}); } } signed main() { ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); int t = 1; // cin>>t; while (t--) { solve(); } return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...