does any one know the reason?
| # | User | Rating |
|---|---|---|
| 1 | Benq | 3792 |
| 2 | VivaciousAubergine | 3647 |
| 3 | Kevin114514 | 3611 |
| 4 | jiangly | 3583 |
| 5 | strapple | 3515 |
| 6 | tourist | 3470 |
| 7 | Radewoosh | 3415 |
| 8 | Um_nik | 3376 |
| 9 | maroonrk | 3361 |
| 10 | XVIII | 3345 |
| # | User | Contrib. |
|---|---|---|
| 1 | Qingyu | 162 |
| 2 | adamant | 148 |
| 3 | Um_nik | 146 |
| 4 | Dominater069 | 143 |
| 5 | errorgorn | 141 |
| 6 | cry | 138 |
| 7 | Proof_by_QED | 136 |
| 8 | YuukiS | 135 |
| 9 | chromate00 | 134 |
| 10 | soullless | 133 |
does any one know the reason?
Can any one help? this my submission -> 11834197
this are the segments: 1-4 10-18 23-29 33-43 46-57 59-77
and my code says to use these bridges:
11 17 19 20 24
Hi. Can anyone tell me why i get time limit in this problem? I use Dijkstra like some other accepted codes. my submission -> 11774583
Hi.
I have prepared 7 problems and their story and send Zlobober a message but no answer from him.
Can any one help me?
I can not understand why my code make wrong answer for the last test. my algorithm is same as editorial and my code is like some others that I have seen. The question is 508C - Anya and Ghosts. the C problem of last contest. and my code: 9606896
int m, t, r;
int wr[305];
bool can[611];
int num[611];
int res = 0;
int main() {
cin >> m >> t >> r;
For(i, 0, m)
{
cin >> wr[i];
wr[i] += 304;
}
int now, need, j;
if (t >= r)
{
For(i, 0, m)
{
now = wr[i];
need = r - num[now];
for (int l = 1; l <= t; l++)
{
if (need <= 0)
break;
j = now — l;
if (can[j] != true)
{
can[j] = true;
res++;
need--;
For(k, 0, t)
{
num[j + 1 + k]++;
}
}
}
if (need > 0)
{
cout << -1 << '\n';
return 0;
}
}
cout << res << '\n';
return 0;
}
cout << -1 << '\n';
return 0;
}
| Name |
|---|


