Submission #537163

#TimeUsernameProblemLanguageResultExecution timeMemory
537163davi_bartLjeto (COCI21_ljeto)C++14
50 / 50
1 ms340 KiB
#pragma GCC optimize("O3") #include <bits/stdc++.h> using namespace std; #define ll long long #define int ll #define fi first #define se second #define ld long double #define pb push_back mt19937 rng(chrono::steady_clock::now().time_since_epoch().count()); signed main() { ios::sync_with_stdio(false); cin.tie(0); int N; cin >> N; vector<array<int, 2> > v[2]; array<int, 2> tot = {0, 0}; vector<int> last(100, -1000); for (int i = 0; i < N; i++) { int a, b, c; cin >> a >> b >> c; v[b / 5].pb({a, b}); } for (int i = 0; i < 2; i++) { sort(v[i].begin(), v[i].end()); for (int j = 0; j < v[i].size(); j++) { tot[i] += 100; if (j > 0 && last[v[i][j][1]] + 10 >= v[i][j][0]) tot[i] += 50; last[v[i][j][1]] = v[i][j][0]; } } cout << tot[0] << " " << tot[1] << '\n'; }

Compilation message (stderr)

Main.cpp: In function 'int main()':
Main.cpp:26:27: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<std::array<long long int, 2> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   26 |         for (int j = 0; j < v[i].size(); j++) {
      |                         ~~^~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...