답안 #420367

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
420367 2021-06-08T10:12:06 Z Nicholas_Patrick Autobahn (COI21_autobahn) C++17
0 / 100
1 ms 204 KB
#include <cstdio>
#include <queue>
using namespace std;

struct person{
	int l, r, t;
};
int main(){
	int n, k, x;
	scanf("%d%d%d", &n, &k, &x);
	vector<person> people(n);
	vector<int> count(100, 0);
	vector<int> pay(100, 0);
	for(auto& i : people){
		scanf("%d%d%d", &i.l, &i.t, &i.r), i.l--;
		for(int j=i.l; j<i.r; j++)
			count[j]++;
		for(int j=i.l+i.t; j<i.r; j++)
			pay[j]++;
	}
	int ans=0;
	for(int i=0; i<100; i++){
		int curr=0;
		for(int j=i; j<i+x; j++){
			if(count[j]>=k)
				curr+=pay[j];
		}
		ans=max(ans, curr);
	}
	printf("%d\n", ans);
}

Compilation message

autobahn.cpp: In function 'int main()':
autobahn.cpp:10:7: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   10 |  scanf("%d%d%d", &n, &k, &x);
      |  ~~~~~^~~~~~~~~~~~~~~~~~~~~~
autobahn.cpp:15:8: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   15 |   scanf("%d%d%d", &i.l, &i.t, &i.r), i.l--;
      |   ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -