Submission #1066751

# Submission time Handle Problem Language Result Execution time Memory
1066751 2024-08-20T06:17:09 Z sleepntsheep Alternating Current (BOI18_alternating) C++17
Compilation error
0 ms 0 KB
#include <stdio.h>
#include <vector>
#include <utility>

using namespace std;

using iii = pair<pair<int, int>, int>;

int n, m;
char ans[1<<18];

iii a[1<<18];

int main() {
	scanf("%d%d", &n, &m);
	for (int i = 0; i < m; ++i) scanf("%d%d", &a[i].first.first, &a[i].first.second);
	sort(a, a + m);

	int e1 = 0, e2 = 0;
	for (int j = 0, i = 1; i <= n; ++i) {
		while (j < m and a[j].first.first == i) {
			if (e1 <= e2) {
				e1 = max(e1, a[j].first.second);
				ans[a[j].second] = '1';
			} else {
				e2 = max(e2, a[j].first.second);
				ans[a[j].second] = '0';
			}
			++j;
		}
		if (e1 + 1 < i or e2 + 1 < i) {
			puts("impossible");
			return 0;
		}
	}
	
	puts(ans);
	return 0;
}

Compilation message

alternating.cpp: In function 'int main()':
alternating.cpp:17:2: error: 'sort' was not declared in this scope; did you mean 'short'?
   17 |  sort(a, a + m);
      |  ^~~~
      |  short
alternating.cpp:15:7: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   15 |  scanf("%d%d", &n, &m);
      |  ~~~~~^~~~~~~~~~~~~~~~
alternating.cpp:16:35: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   16 |  for (int i = 0; i < m; ++i) scanf("%d%d", &a[i].first.first, &a[i].first.second);
      |                              ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~