| Task: | Equilateral numbers |
| Sender: | Vaicode |
| Submission time: | 2024-11-16 16:51:41 +0200 |
| Language: | C++ (C++20) |
| Status: | READY |
| Result: | TIME LIMIT EXCEEDED |
| test | verdict | time | |
|---|---|---|---|
| #1 | TIME LIMIT EXCEEDED | -- | details |
| #2 | TIME LIMIT EXCEEDED | -- | details |
| #3 | TIME LIMIT EXCEEDED | -- | details |
| #4 | TIME LIMIT EXCEEDED | -- | details |
| #5 | TIME LIMIT EXCEEDED | -- | details |
| #6 | TIME LIMIT EXCEEDED | -- | details |
| #7 | TIME LIMIT EXCEEDED | -- | details |
| #8 | TIME LIMIT EXCEEDED | -- | details |
| #9 | TIME LIMIT EXCEEDED | -- | details |
| #10 | TIME LIMIT EXCEEDED | -- | details |
| #11 | TIME LIMIT EXCEEDED | -- | details |
| #12 | TIME LIMIT EXCEEDED | -- | details |
Compiler report
input/code.cpp: In function 'int main()':
input/code.cpp:23:17: warning: overflow in conversion from 'double' to 'int' changes value from '1.0e+18' to '2147483647' [-Woverflow]
23 | dp[i] = 1e18;
| ^~~~
input/code.cpp:19:8: warning: unused variable 'm' [-Wunused-variable]
19 | ll m = 0;
| ^Code
#include<iostream>
#include<vector>
#include <cmath>
#include <map>
using namespace std;
typedef long long ll;
#define lim 101010
int dp[lim];
map<ll, int> ek;
ll e(ll k){
return k*(k+1)/2;
}
int main()
{
ll m = 0;
dp[0] = 0;
for(ll i = 1; i< lim; ++i){
ek[e(i)] = 1;
dp[i] = 1e18;
for (ll j =0; e(j) <= i; j++) {
dp[i] = min(dp[i-e(j)] + 1, dp[i]);
}
// m = max(dp[i], m);
}
for(ll i = 1; i< 10000; ++i){
for(ll j = 1; j< 1000; ++j){
ek[e(i) + e(j)] = 2;
}
}
ll n;
cin >> n;
int res = 3;
for(ll i = 1; e(i) <= n; ++i){
if(e(i) == n){
cout << "1\n";
return 0;
}
if(ek[n - e(i)]){
res = min(res, ek[n-e(i)]+1);
}
if(n - e(i) < lim){
res = min(res, dp[n-e(i)]+1);
}
}
cout << res << endl;
}Test details
Test 1
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 1 |
| correct output |
|---|
| 1 |
| user output |
|---|
| (empty) |
Test 2
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 2 |
| correct output |
|---|
| 2 |
| user output |
|---|
| (empty) |
Test 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 3 |
| correct output |
|---|
| 1 |
| user output |
|---|
| (empty) |
Test 4
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 5 |
| correct output |
|---|
| 3 |
| user output |
|---|
| (empty) |
Test 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 33 |
| correct output |
|---|
| 3 |
| user output |
|---|
| (empty) |
Test 6
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 12385719843 |
| correct output |
|---|
| 3 |
| user output |
|---|
| (empty) |
Test 7
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 10935032 |
| correct output |
|---|
| 3 |
| user output |
|---|
| (empty) |
Test 8
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 659023495928 |
| correct output |
|---|
| 3 |
| user output |
|---|
| (empty) |
Test 9
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 913591235689 |
| correct output |
|---|
| 2 |
| user output |
|---|
| (empty) |
Test 10
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 999999911791 |
| correct output |
|---|
| 1 |
| user output |
|---|
| (empty) |
Test 11
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 1000000000000 |
| correct output |
|---|
| 2 |
| user output |
|---|
| (empty) |
Test 12
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 999999999998 |
| correct output |
|---|
| 3 |
| user output |
|---|
| (empty) |
