結果
問題 | No.370 道路の掃除 |
ユーザー | aaa |
提出日時 | 2019-01-04 16:34:58 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,788 bytes |
コンパイル時間 | 1,297 ms |
コンパイル使用メモリ | 101,984 KB |
実行使用メモリ | 13,640 KB |
最終ジャッジ日時 | 2024-11-23 23:12:42 |
合計ジャッジ時間 | 42,416 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
8,320 KB |
testcase_02 | AC | 2 ms
9,888 KB |
testcase_03 | AC | 2 ms
8,448 KB |
testcase_04 | AC | 2 ms
10,496 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
10,020 KB |
testcase_07 | AC | 2 ms
8,320 KB |
testcase_08 | AC | 2 ms
8,448 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | TLE | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | WA | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | TLE | - |
testcase_27 | WA | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | WA | - |
testcase_32 | TLE | - |
testcase_33 | TLE | - |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:134:39: warning: 'index' may be used uninitialized [-Wmaybe-uninitialized] 134 | func1(index, 1, abs(list[index])); | ^ main.cpp:109:13: note: 'index' was declared here 109 | int index; | ^~~~~
ソースコード
#include <stdio.h> #include <string.h> #include <algorithm> #include <iostream> #include <string> #include <vector> #include <functional> #include <map> #include <iomanip> #include <math.h> #include <stack> #include <queue> #include <bitset> #include <cstdlib> #include <tuple> #include <cctype> #include <ctype.h> #include <set> #include <sstream> #include <time.h> using namespace std; //#define int long long #define rep(i,s,n) for(int i = s;i<n;i++) #define repe(i,s,n) for(int i = s;i<=n;i++) #define rrep(i,s,n) for(int i = (n)-1;i>=(s);i--) #define all(v) (v).begin(),(v).end() #define pb push_back #define fi first #define se second #define chmin(a,b) a=min((a),(b)) #define chmax(a,b) a=max((a),(b)) typedef long long ll; typedef pair<int, int>pint; typedef vector<int>vint; typedef vector<pint>vpint; typedef pair<pint, int> P1; typedef pair<int, pint> P2; typedef pair<pint, pint> PP; static const ll maxLL = (ll)1 << 62; const ll MOD = 1000000007; const ll INF = 1e18; int ca[12] = { 31,28,31,30,31,30,31,31,30,31,30,31 }; int n, m, minn = 99999999; vector<int>list; struct MyStruct { bool flag[1005]; }; int func1(int index, int cnt, int sum) { if (cnt == n) { minn = min(minn, sum); return 0; } if (index < 1) { func1(index + 1, cnt + 1, sum + abs(list[index] - list[index + 1])); } else { if (abs(list[index] - list[index - 1]) < abs(list[index] - list[index + 1])) { func1(index - 1, cnt + 1, sum + abs(list[index] - list[index - 1])); } else if (abs(list[index] - list[index - 1]) > abs(list[index] - list[index + 1])) { func1(index + 1, cnt + 1, sum + abs(list[index] - list[index + 1])); } else if (abs(list[index] - list[index - 1]) == abs(list[index] - list[index + 1])) { func1(index - 1, cnt + 1, sum + abs(list[index] - list[index - 1])); func1(index + 1, cnt + 1, sum + abs(list[index] - list[index + 1])); } } return 0; } int func2(int index, int cnt, int sum, MyStruct st) { if (sum >= minn) { return 0; } if (cnt == n) { minn = min(minn, sum); return 0; } for (int i = 0; i < m; i++) { if (st.flag[i] == false) { st.flag[i] = true; func2(i, cnt + 1, sum + abs(list[index] - list[i]), st); } } return 0; } signed main() { int i, j; int index; MyStruct st; memset(st.flag, 0, sizeof(st.flag)); cin >> n >> m; for (i = 0; i < m; i++) { int num; cin >> num; list.push_back(num); } sort(list.begin(), list.end()); for (i = 0; i < m; i++) { if (minn > abs(0 - list[i])) { index = i; minn = abs(list[i]); } } minn = 99999999; func1(index, 1, abs(list[index])); for (i = 0; i < m; i++) { st.flag[i] = true; func2(i, 1, abs(list[i]), st); st.flag[i] = false; } cout << minn << endl; getchar(); getchar(); return 0; }