Skip to content
Snippets Groups Projects
Commit b41dac45 authored by Bruno Freitas Tissei's avatar Bruno Freitas Tissei
Browse files

Add gym 101492

parent 55e5c5fa
No related branches found
No related tags found
No related merge requests found
#include <bits/stdc++.h>
#define MAX 0
#define MOD 1000000007
#define EPS 1e-6
#define inf 0x3f3f3f3f
#define llinf 0x3f3f3f3f3f3f3f3f
#define fi first
#define se second
#define sz size()
#define pb push_back
#define ende '\n'
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
using namespace std;
typedef long long ll;
typedef pair<int,int> ii;
char ans[MAX];
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
ll n; cin >> n;
if (((n * (n + 1)) / 2) % 2)
return cout << -1 << ende, 0;
ll sum = 0, h = n * (n + 1) / 4;
for (int i = n; i >= 1; --i)
if (sum + i <= h)
ans[i-1] = '+', sum += i;
else
ans[i-1] = '-';
ans[n] = 0;
cout << ans << ende;
return 0;
}
#include <bits/stdc++.h>
#define MAX 0
#define MOD 1000000007
#define EPS 1e-6
#define inf 0x3f3f3f3f
#define llinf 0x3f3f3f3f3f3f3f3f
#define fi first
#define se second
#define sz size()
#define pb push_back
#define ende '\n'
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
using namespace std;
typedef long long ll;
typedef pair<int,int> ii;
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
double r, dist;
cin >> r;
int sum = 0;
for (int i = 0; i < 3; ++i) {
double x, y;
cin >> x >> y;
dist = sqrt(x*x + y*y);
for (int j = 10; j > 0; --j)
if (dist <= (10 - j + 1)*r + 1e-6) {
sum += j;
break;
}
}
cout << sum << ende;
return 0;
}
File added
......@@ -71,7 +71,7 @@ int query(int p, int q) {
q = par[q][i];
}
return dp[p][0];
return cost[p][0];
//* if (p == q) return ans;
//* else return ans + cost[p][0] + cost[q][0];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment