Codeforces Round #558(Div.2) B. Cat Party(사고)

507 단어 CodeForces

제목 링크:https://codeforces.com/contest/1163/problem/B2
문제는 한 수를 삭제한 후 가장 큰 거리 x를 구하여 1-x의 수가 같게 하는 것이다
한 명씩 훑어보고 i위에서 1-i의 모든 수의 출현 횟수와 모든 수의 출현 횟수를 유지하고 상황을 토론하면 됩니다.
AC 코드:
#include 
#define ll long long
#define maxn 100005
using namespace std;
ll pre[maxn];
int n;

int main()
{
	scanf("%d", &n);
	map a, b;
	for(int i=0;i

좋은 웹페이지 즐겨찾기