답안 #305828

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
305828 2020-09-24T02:19:28 Z T0p_ Exhibition (JOI19_ho_t2) C++14
컴파일 오류
0 ms 0 KB
#include<bits/stdc++.h>
using namespace std;

struct picture
{
	int s, v;
	bool operator < (const picture & o) const
	{
		return v < o.v;	
	}
};

picture p[100100];
int f[100100];

int main()
{
	int n, m;
	scanf(" %d %d",&n,&m);
	for(int i=1 ; i<=n ; i++)
		scanf(" %d %d",&p[i].s,&p[i].v);
	for(int i=1 ; i<=m ; i++)
		scanf(" %d",&f[i]);
	sort(p+1, p+n+1);
	sort(f+1, f+m+1);
	int i = n, j = m, ans = 0;
	while(i >= 1 && j >= 1)
	{
		if(p[i].s <= f[j])
		{
			j--;
			ans++;
		}
		i--
	}
	printf("%d\n",ans);
	return 0;
}

Compilation message

joi2019_ho_t2.cpp: In function 'int main()':
joi2019_ho_t2.cpp:34:6: error: expected ';' before '}' token
   34 |   i--
      |      ^
      |      ;
   35 |  }
      |  ~    
joi2019_ho_t2.cpp:19:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   19 |  scanf(" %d %d",&n,&m);
      |  ~~~~~^~~~~~~~~~~~~~~~
joi2019_ho_t2.cpp:21:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   21 |   scanf(" %d %d",&p[i].s,&p[i].v);
      |   ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
joi2019_ho_t2.cpp:23:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   23 |   scanf(" %d",&f[i]);
      |   ~~~~~^~~~~~~~~~~~~