【洛谷-P1089】解题报告(水题)

原始题目

P1089 津津的储蓄计划

题目大意

月初估算,多余的存,如果某月得到零花钱不足预算,则输出-X,X位月份,否则输出最后金钱(存储的变1.2倍)。

解题思路

水题

解题代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef vector<int> vi;
typedef pair<int, int> pii;
typedef pair<string, string> pss;

#define rep(i, a, n) for (int i = a; i < n; ++i)
#define per(i, a, n) for (int i = n - 1; i >= a; --i)
#define fi first
#define se second
#define all(x) x.begin(), x.end()
#define mp make_pair
#define pb push_back
#define np next_permutation
#define INF 0x3f3f3f3f
#define EPS 1e-8
#define endl '\n'

const int maxn = 1e5 + 5;
int ans, cnt, num, save;
int a[maxn];
int main()
{
ios::sync_with_stdio(false);
rep(i, 1, 12 + 1) cin >> a[i];
rep(i, 1, 12 + 1)
{
cnt += 300;
cnt -= a[i];
if (cnt < 0) {
cout << '-' << i << endl;
break;
}
save += (cnt / 100);
cnt %= 100;
}
if (cnt >= 0) {
cnt += save * 120;
cout << cnt << endl;
}
}

收获与反思