Submission #97282

#TimeUsernameProblemLanguageResultExecution timeMemory
97282model_codeExhibition (JOI19_ho_t2)C++17
100 / 100
112 ms1692 KiB
#include <cstdio> #include <algorithm> using namespace std; int main() { int N, M, S, V; scanf("%d%d", &N, &M); int C[M]; pair<int, int> paints[N]; //first V, second S for(int i = 0; i < N; i++) { scanf("%d%d", &S, &V); paints[i] = make_pair(V, S); } for(int i = 0; i < M; i++) { scanf("%d", C + i); } sort(paints, paints + N); sort(C, C + M); int ans = 0; for(int i = N - 1; i >= 0 && ans < M; i--) { if(C[M - ans - 1] >= paints[i].second) { ans++; } } printf("%d\n", ans); return 0; }

Compilation message (stderr)

joi2019_ho_t3.cpp: In function 'int main()':
joi2019_ho_t3.cpp:7:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d%d", &N, &M);
  ~~~~~^~~~~~~~~~~~~~~~
joi2019_ho_t3.cpp:11:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d%d", &S, &V);
   ~~~~~^~~~~~~~~~~~~~~~
joi2019_ho_t3.cpp:15:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d", C + i);
   ~~~~~^~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...