結果

問題 No.522 Make Test Cases(テストケースを作る)
ユーザー 👑 yumechiyumechi
提出日時 2017-03-26 15:44:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,971 ms / 2,000 ms
コード長 1,406 bytes
コンパイル時間 1,296 ms
コンパイル使用メモリ 100,668 KB
実行使用メモリ 62,948 KB
最終ジャッジ日時 2023-10-21 23:34:17
合計ジャッジ時間 5,378 ms
ジャッジサーバーID
(参考情報)
judge10 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
4,348 KB
testcase_01 AC 54 ms
5,388 KB
testcase_02 AC 40 ms
5,020 KB
testcase_03 AC 116 ms
7,428 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 2 ms
4,348 KB
testcase_08 AC 5 ms
4,348 KB
testcase_09 AC 78 ms
6,408 KB
testcase_10 AC 1,971 ms
62,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <cmath>
#include <vector>
#include <queue>

#include <map>
#include <set>
#include <string>
#include <algorithm>
#include <functional>
using namespace std;
#define FOR(i,a,b) for (int i=(a);i<(b);i++)
#define RFOR(i,a,b) for (int i=(b)-1;i>=(a);i--)
#define REP(i,n) for (int i=0;i<(n);i++)
#define RREP(i,n) for (int i=(n)-1;i>=0;i--)
#define INF 1<<29
#define ALEN(ARR) (sizeof(ARR) / sizeof((ARR)[0]))
#define MP make_pair
#define mp make_pair
#define pb push_back
#define PB push_back
#define _DEBUG(x) cout<<#x<<": "<<x<<endl
#define _DDEBUG(x,y) cout<<#x<<": "<<x<<", "<<#y<<": "<<y<<endl
#define ll long long
#define ull unsigned long long
#define MOD 1000000007

int main(){
	cin.tie(0);
	ios::sync_with_stdio(false);
	cout.precision(16);

	int n;
	cin >> n;
	
	set<tuple<int, int, int> > before_sort_ans;
	FOR(i, 1, n) {
		FOR(j, i, n) {
			if(n-i-j <= 0) {
				break;
			}
			int array[] = {i, j, n-i-j};
			sort(array, array + 3);
			before_sort_ans.insert(make_tuple(array[0], array[1], array[2]));
		}
	}

	vector<tuple<int, int, int> > ans;
	copy(before_sort_ans.begin(), before_sort_ans.end(), back_inserter(ans));
	sort(ans.begin(), ans.end());

#if DEBUG
	cout << "** RESULT **" << endl; // debug
#endif

	for(tuple<int, int, int> elem : ans) {
		cout << get<0>(elem) << " " << get<1>(elem) << " " << get<2>(elem) << endl;
	}

	
	return 0;
}
0