답안 #931526

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
931526 2024-02-22T02:14:55 Z pan Hop (COCI21_hop) C++17
110 / 110
47 ms 9300 KB
#include <bits/stdc++.h>
//#include <ext/pb_ds/assoc_container.hpp>
//#include <ext/pb_ds/tree_policy.hpp>
//#include "bits_stdc++.h"
#define f first
#define s second
#define pb push_back
#define mp make_pair
#define lb lower_bound
#define ub upper_bound
#define input(x) scanf("%lld", &x);
#define input2(x, y) scanf("%lld%lld", &x, &y);
#define input3(x, y, z) scanf("%lld%lld%lld", &x, &y, &z);
#define input4(x, y, z, a) scanf("%lld%lld%lld%lld", &x, &y, &z, &a);
#define print(x, y) printf("%lld%c", x, y);
#define show(x) cerr << #x << " is " << x << endl;
#define show2(x,y) cerr << #x << " is " << x << " " << #y << " is " << y << endl;
#define show3(x,y,z) cerr << #x << " is " << x << " " << #y << " is " << y << " " << #z << " is " << z << endl;
#define discretize(x) sort(x.begin(), x.end()); x.erase(unique(x.begin(), x.end()), x.end());
using namespace std;
//using namespace __gnu_pbds;
//#define ordered_set tree<int, null_type, less<int>, rb_tree_tag, tree_order_statistics_node_update>
//#define ordered_multiset tree<int, null_type, less_equal<int>, rb_tree_tag, tree_order_statistics_node_update>
typedef long long ll;
typedef long double ld;
typedef pair<ld, ll> pd;
typedef pair<string, ll> psl;
typedef pair<ll, ll> pi;
typedef pair<ll, pi> pii;

int main()
{
	ll n;
	input(n);
	ll arr[n];
	pi dp[n][3];
	ll ans[n][n];
	for (ll i=0; i<n; ++i) dp[i][0] = mp(0,1), dp[i][1] = mp(0,2), dp[i][2] = mp(0,3);
	for (ll i=0; i<n; ++i) input(arr[i]);
	for (ll i=1; i<n; ++i)
	{
		for (ll j=0; j<i; ++j)
		{
			
			if (arr[i]%arr[j]!=0) {ans[j][i] = 1; continue; }// does not matter
			sort(dp[j], dp[j]+3);
			dp[j][0].f++;
			ans[j][i] = dp[j][0].s;
			for (ll k=0; k<3; ++k) dp[i][dp[j][k].s-1].f = max(dp[i][dp[j][k].s-1].f, dp[j][k].f);

		}
		//for (ll k=0; k<3; ++k) assert(dp[i][k].f<=3);
	}
	for (ll i=1; i<n; ++i) {for (ll j=0; j<i; ++j) {print(ans[j][i], ' '); } printf("%c", '\n');}
	
	return 0;
}

Compilation message

Main.cpp: In function 'int main()':
Main.cpp:11:23: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   11 | #define input(x) scanf("%lld", &x);
      |                  ~~~~~^~~~~~~~~~~~
Main.cpp:34:2: note: in expansion of macro 'input'
   34 |  input(n);
      |  ^~~~~
Main.cpp:11:23: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   11 | #define input(x) scanf("%lld", &x);
      |                  ~~~~~^~~~~~~~~~~~
Main.cpp:39:25: note: in expansion of macro 'input'
   39 |  for (ll i=0; i<n; ++i) input(arr[i]);
      |                         ^~~~~
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Correct 0 ms 348 KB Output is correct
3 Correct 0 ms 348 KB Output is correct
4 Correct 0 ms 348 KB Output is correct
5 Correct 0 ms 412 KB Output is correct
6 Correct 0 ms 348 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Correct 0 ms 348 KB Output is correct
3 Correct 0 ms 348 KB Output is correct
4 Correct 0 ms 348 KB Output is correct
5 Correct 0 ms 412 KB Output is correct
6 Correct 0 ms 348 KB Output is correct
7 Correct 0 ms 348 KB Output is correct
8 Correct 41 ms 9192 KB Output is correct
9 Correct 1 ms 348 KB Output is correct
10 Correct 1 ms 348 KB Output is correct
11 Correct 47 ms 8120 KB Output is correct
12 Correct 42 ms 9300 KB Output is correct
13 Correct 38 ms 8148 KB Output is correct
14 Correct 2 ms 600 KB Output is correct
15 Correct 38 ms 8028 KB Output is correct
16 Correct 38 ms 8108 KB Output is correct
17 Correct 39 ms 8136 KB Output is correct
18 Correct 37 ms 7956 KB Output is correct
19 Correct 38 ms 8272 KB Output is correct
20 Correct 45 ms 8188 KB Output is correct
21 Correct 39 ms 8020 KB Output is correct
22 Correct 42 ms 8172 KB Output is correct
23 Correct 43 ms 9156 KB Output is correct