Submission #904919

# Submission time Handle Problem Language Result Execution time Memory
904919 2024-01-12T11:11:45 Z dsyz Carnival (CEOI14_carnival) C++17
0 / 100
2 ms 344 KB
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define MAXN (1000005)
int main() {
	ios_base::sync_with_stdio(false);cin.tie(0);
	ll N;
	cin>>N;
	vector<ll> unique; //exactly 1 representative from all different type of costumes
	for(ll i = 1;i <= N;i++){ //1-indexed
		cout<<unique.size() + 1<<" ";
		for(auto u : unique){
			cout<<u<<" ";
		}
		cout<<i<<endl;
		ll diff;
		cin>>diff;
		if(diff == unique.size() + 1){
			unique.push_back(i);
		}
	}
	cout<<0<<" ";
	for(ll i = 0;i < N;i++){
		cout<<1<<" ";
	}
	cout<<endl;
}

Compilation message

carnival.cpp: In function 'int main()':
carnival.cpp:18:11: warning: comparison of integer expressions of different signedness: 'll' {aka 'long long int'} and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   18 |   if(diff == unique.size() + 1){
      |      ~~~~~^~~~~~~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 344 KB Incorrect
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 344 KB Incorrect
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 344 KB Output is correct
2 Incorrect 1 ms 344 KB Incorrect
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 344 KB Incorrect
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 344 KB Incorrect
2 Halted 0 ms 0 KB -