Submission #945660

# Submission time Handle Problem Language Result Execution time Memory
945660 2024-03-14T06:07:01 Z ezzzay Art Exhibition (JOI18_art) C++14
0 / 100
133 ms 262144 KB
#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

art.cpp: In function 'int main()':
art.cpp:7:7: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
    7 |  scanf("%d%d", &N, &M);
      |  ~~~~~^~~~~~~~~~~~~~~~
art.cpp:11:8: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   11 |   scanf("%d%d", &S, &V);
      |   ~~~~~^~~~~~~~~~~~~~~~
art.cpp:15:8: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   15 |   scanf("%d", C + i);
      |   ~~~~~^~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Runtime error 133 ms 262144 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 133 ms 262144 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 133 ms 262144 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 133 ms 262144 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -