# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
287826 | 2020-09-01T03:36:54 Z | chubyxdxd | ZigZag (COCI17_zigzag) | C++17 | 642 ms | 24112 KB |
#include <bits/stdc++.h> //#include <ext/pb_ds/assoc_container.hpp> //#include <ext/pb_ds/tree_policy.hpp> #define all(a) a.begin(),a.end() #define allr(a) a.rbegin(),a.rend() #define ff first #define sc second #define INF 3000000000 #define SINF 2*(1e18) #define inf -10000000 #define pb push_back #define forr(i,p,n) for(int i=p;i<n;i++) #define mpk make_pair #define upb(a,s) upper_bound(a.begin(),a.end(),s) #define lwb(a,s) lower_bound(a.begin(),a.end(),s) #define mem(a,val) memset(a,val,sizeof a) #define cc continue #define eb emplace_back #define bb break #define mostbit(n) 32-__builtin_clz(n)-1 #define time_to_forget cerr << "\nTime elapsed: " << 1000 * clock() / CLOCKS_PER_SEC << "ms\n" using namespace std; //using namespace __gnu_pbds; typedef long long ll; typedef pair<ll,ll> ii; typedef vector<ii> vii; typedef vector<ll> vi; typedef vector<vi> vvi; int main() { ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(); ll a,b,c,d,n,t,m,k; cin>>n>>m; map<char,set<pair<int,string>>> mp; map<string,int> mo; string s; char ch; forr(i,0,n){ cin>>s; mp[s[0]].insert(pair<int,string> (0,s)); mo[s]=0; } forr(i,0,m){ cin>>ch; auto it=mp[ch].begin(); cout<<(*it).sc<<endl; mp[ch].erase(it); mp[ch].insert(pair<int,string> ((*it).ff+1,(*it).sc)); mo[(*it).sc]++; } time_to_forget; return 0; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 384 KB | Output isn't correct |
2 | Incorrect | 1 ms | 384 KB | Output isn't correct |
3 | Correct | 2 ms | 512 KB | Output is correct |
4 | Incorrect | 2 ms | 640 KB | Output isn't correct |
5 | Incorrect | 2 ms | 512 KB | Output isn't correct |
6 | Incorrect | 2 ms | 512 KB | Output isn't correct |
7 | Incorrect | 606 ms | 23928 KB | Output isn't correct |
8 | Incorrect | 612 ms | 23928 KB | Output isn't correct |
9 | Incorrect | 614 ms | 24056 KB | Output isn't correct |
10 | Incorrect | 642 ms | 24112 KB | Output isn't correct |