Submission #1066752

# Submission time Handle Problem Language Result Execution time Memory
1066752 2024-08-20T06:17:21 Z sleepntsheep Alternating Current (BOI18_alternating) C++17
0 / 100
12 ms 1372 KB
#include <stdio.h>
#include <algorithm>
#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:16:7: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   16 |  scanf("%d%d", &n, &m);
      |  ~~~~~^~~~~~~~~~~~~~~~
alternating.cpp:17:35: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   17 |  for (int i = 0; i < m; ++i) scanf("%d%d", &a[i].first.first, &a[i].first.second);
      |                              ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB 1 is not a string of length exactly 15
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB 1 is not a string of length exactly 15
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB 1 is not a string of length exactly 15
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 12 ms 1372 KB 1 is not a string of length exactly 100000
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB 1 is not a string of length exactly 15
2 Halted 0 ms 0 KB -