Submission #3929

#TimeUsernameProblemLanguageResultExecution timeMemory
3929joonasDivide into triangle (kriii1_D)C++98
Compilation error
0 ms0 KiB
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;

vector<pair<int,int>> pt;
int main(){
	int i,j, n, tmp;
	scanf("%d", &n);
	for(i=0; i < 3*n; ++i){
		scanf("%d %d", &tmp, &tmp);
		pt.push_back(pair<int,int>(i+1,tmp));
	}
	for(i=0; i < 3*n; ++i){
		for(j=0; j < 3*n; ++j){
			if( pt[i].second < pt[j].second ) swap( pt[i], pt[j] );
		}
	}

	for(i=0; i < 3*n; i+=3){
		for(j=i; j < i+3; ++j){
			for(int k=i; k < i+3; ++k){
				if( pt[j].first < pt[k].first ) swap( pt[j], pt[k] );
			}
		}
		for(j=i; j < i+3; ++j) printf("%d ", pt[j].first);
		printf("\n");
	}
	return 0;
}

Compilation message (stderr)

D.cpp:6:20: error: '>>' should be '> >' within a nested template argument list
D.cpp: In function 'int main()':
D.cpp:9:16: error: 'scanf' was not declared in this scope
D.cpp:26:51: error: 'printf' was not declared in this scope
D.cpp:27:14: error: 'printf' was not declared in this scope