제출 #341851

#제출 시각아이디문제언어결과실행 시간메모리
341851boykutHedgehog Daniyar and Algorithms (IZhO19_sortbooks)C++14
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h>

using namespace std;

#define work_with_io ios::sync_with_stdio(0);cin.tie(0);
//#define int long long

void solve() {
	int n, m;
	cin >> n >> m;
	int a[n];
	for (int i = 0; i < n; i++) {
		cin >> a[i];
	}
	//int mna = *min_element(a, a + n);
	int dp[n];
	dp[0] = 1;
	for (int i = 1; i < n; i++) {
		if (a[i] >= a[i - 1])
			dp[i] = dp[i - 1] + 1;
		else
			dp[i] = 1;
	}
	for (int tmp=0;tmp<m;tmp++) {
		int l, r, k;
		cin >> l >> r >> k;
		l--;r--;
		//if (k < mna) {
			if (r-l+1 <= dp[r])
				cout << "1\n";
			else
				cout << "0\n";
		//} else {
		//	int ans = 1;
		//	for (int left = l; left <= r; left++) {
		//		for (int right = left + 1; right <= r; right++) {
		//			if (a[left] > a[right] && a[left] + a[right] > k)
		//				ans = 0;
		//		}
		//	}
		//	cout << ans << '\n';
		}
	}
	return;
}

signed main() {
	//std::work_with_io;
	int q = 1;
	//cin >> q;
	while (q--) {
		solve();
	}
	return 0;
}

컴파일 시 표준 에러 (stderr) 메시지

sortbooks.cpp:44:2: error: expected unqualified-id before 'return'
   44 |  return;
      |  ^~~~~~
sortbooks.cpp:45:1: error: expected declaration before '}' token
   45 | }
      | ^