結果
問題 | No.1935 Water Simulation |
ユーザー | shinchan |
提出日時 | 2022-05-13 21:49:15 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,595 bytes |
コンパイル時間 | 2,495 ms |
コンパイル使用メモリ | 216,944 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-07-22 01:31:47 |
合計ジャッジ時間 | 5,779 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
ソースコード
#include <bits/stdc++.h> #define be(v) (v).begin(),(v).end() #define pb(q) push_back(q) #define rep(i, n) for(int i=0;i<n;i++) #define all(i, v) for(auto& i : v) typedef long long ll; using namespace std; const ll mod=1000000007, INF=(1LL<<60); #define doublecout(a) cout<<fixed<<setprecision(10)<<a<<endl; ll hen(vector<ll> a) { return ((a[0] * 101 + a[1]) *101 + a[2]) *101 + a[3]; } int main() { cin.tie(0); cout.tie(0); ios::sync_with_stdio(false); ll v[4], n; rep(i, 4) cin >> v[i]; cin >> n; if(n <= 10000) { vector<ll> h(4, 0); h[0] = v[0]; ll id = 0; while(n--) { // rep(i, 4) cout << h[i] << " "; // cout << endl; ll nx = (id + 1) % 4; ll num1 = h[id]; ll num2 = v[nx] - h[nx]; ll num = min(num1, num2); h[id] -= num; h[nx] += num; id++; id %= 4; } rep(i, 4) cout << h[i] << " "; cout << endl; return 0; } ll min_id = 0, num = 10000; rep(i, 4) { if(v[i] < num) { min_id = i; num = v[i]; } } vector<ll> h(4, 0); h[0] = v[0]; ll id = 0; rep(i, min_id) { n--; ll nx = (id + 1) % 4; ll num1 = h[id]; ll num2 = v[nx] - h[nx]; ll num = min(num1, num2); h[id] -= num; h[nx] += num; id++; id %= 4; } set<ll> seen; map<ll, ll> mp; while(n >= 4) { if(seen.count(hen(h))) { break; } seen.insert(hen(h)); mp[hen(h)] = n; rep(i, 4) { ll nx = (id + 1) % 4; ll num1 = h[id]; ll num2 = v[nx] - h[nx]; ll num = min(num1, num2); h[id] -= num; h[nx] += num; id++; id %= 4; } n -= 4; } if(n <= 3) { while(n--) { ll nx = (id + 1) % 4; ll num1 = h[id]; ll num2 = v[nx] - h[nx]; ll num = min(num1, num2); h[id] -= num; h[nx] += num; id++; id %= 4; } rep(i, 4) cout << h[i] << " "; cout << endl; return 0; } n %= mp[hen(h)]; while(n--) { ll nx = (id + 1) % 4; ll num1 = h[id]; ll num2 = v[nx] - h[nx]; ll num = min(num1, num2); h[id] -= num; h[nx] += num; id++; id %= 4; } rep(i, 4) cout << h[i] << " "; cout << endl; return 0; }