Submission #681843

#TimeUsernameProblemLanguageResultExecution timeMemory
681843Vladth11ZigZag (COCI17_zigzag)C++14
56 / 80
187 ms18296 KiB
#include <bits/stdc++.h> #pragma GCC optimize("Ofast") #define debug(x) cerr << #x << " " << x << "\n" #define debugs(x) cerr << #x << " " << x << " " using namespace std; typedef pair <int, int> pii; typedef long long ll; const int NMAX = 100001; const int VMAX = 41; const int INF = 1e9; const int MOD = 1000000009; const int BLOCK = 318; const int base = 31; const int nrbits = 21; vector <int> v[2][27]; string s[NMAX]; string org[NMAX]; int indice[27]; int main() { #ifdef HOME ifstream cin(".in"); ofstream cout(".out"); #endif // HOME ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0); int n, m, i, maxim = 0; cin >> n >> m; for(i = 1; i <= n; i++){ cin >> s[i]; org[i] = s[i]; maxim = max(maxim, (int)s[i].size()); } for(i = 1; i <= n; i++){ while(s[i].size() < maxim){ s[i] += ('z' + 1); } } maxim--; for(i = 1; i <= n; i++) v[1 - (maxim%2)][0].push_back(i); for(i = maxim; i >= 0; i--){ int act = i%2; int last = 1 - act; for(int j = 0; j < 27; j++){ for(auto x : v[last][j]){ v[act][s[x][i] - 'a'].push_back(x); } v[last][j].clear(); } } while(m--){ char c; int ind; cin >> c; ind = c - 'a'; cout << org[v[0][ind][indice[ind]]] << "\n"; indice[ind]++; if(indice[ind] == v[0][ind].size()) indice[ind] = 0; } return 0; }

Compilation message (stderr)

zigzag.cpp: In function 'int main()':
zigzag.cpp:40:27: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   40 |         while(s[i].size() < maxim){
      |               ~~~~~~~~~~~~^~~~~~~
zigzag.cpp:64:24: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   64 |         if(indice[ind] == v[0][ind].size()) indice[ind] = 0;
      |            ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...