Submission #363213

#TimeUsernameProblemLanguageResultExecution timeMemory
363213Ruxandra985Schools (IZhO13_school)C++14
20 / 100
411 ms14984 KiB
#include <bits/stdc++.h> #define DIMN 300010 using namespace std; int x[DIMN] , y[DIMN]; pair <int , int> v[DIMN]; multiset <int> w; int cmp (pair <int , int> a , pair <int , int> b){ return a > b; } int main() { FILE *fin = stdin; FILE *fout = stdout; int n , m , s , i , aux ,idx; long long suma , sol = 0; multiset<int> :: iterator it , it2; fscanf (fin,"%d%d%d",&n,&m,&s); for (i = 1 ; i <= n ; i++){ fscanf (fin,"%d%d",&x[i],&y[i]); v[i] = make_pair(x[i] - y[i] , i); } sort (v + 1 , v + n + 1 , cmp); /// v = ordinea prioritatilor suma = 0; for (i = 1 ; i <= m ; i++){ suma += x[v[i].second]; } for (i = m + 1 ; i <= n ; i++){ w.insert(y[v[i].second]); } idx = 0; it = w.end(); it--; while (idx < s){ idx++; suma += *it; aux = *it; it--; } /// aux e cea mai mica valoare luata din sufixul ala sol = suma; for (i = m + 1 ; i <= n ; i++){ suma -= x[v[i - m].second]; suma += x[v[i].second]; /// cele mai mari s uri /// adaugi i - m ul if (y[v[i - m].second] >= aux){ /// ai o pb, il adaugi suma -= aux; suma += y[v[i - m].second]; it2 = it; it++; it2++; it2++; aux = (*it2); } w.insert(y[v[i - m].second]); it = w.lower_bound(aux); it--; /// scoti i ul din multiset if (y[v[i].second] >= aux){ /// ai o pb suma -= y[v[i].second]; suma += *it; aux = *it; it--; /// te duci mai la stanga } w.erase(y[v[i].second]); /// it vreau sa fie prima pozitie a lui aux it = w.lower_bound(aux); it--; sol = max(sol , suma); } fprintf (fout,"%lld",sol); return 0; }

Compilation message (stderr)

school.cpp: In function 'int main()':
school.cpp:17:12: warning: ignoring return value of 'int fscanf(FILE*, const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   17 |     fscanf (fin,"%d%d%d",&n,&m,&s);
      |     ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
school.cpp:19:16: warning: ignoring return value of 'int fscanf(FILE*, const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   19 |         fscanf (fin,"%d%d",&x[i],&y[i]);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
school.cpp:60:21: warning: 'aux' may be used uninitialized in this function [-Wmaybe-uninitialized]
   60 |             suma -= aux;
      |                     ^~~
#Verdict Execution timeMemoryGrader output
Fetching results...