結果
問題 | No.1196 A lazy student |
ユーザー | capra314cabra |
提出日時 | 2020-08-20 09:23:13 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 67 ms / 1,000 ms |
コード長 | 2,821 bytes |
コンパイル時間 | 1,590 ms |
コンパイル使用メモリ | 167,160 KB |
実行使用メモリ | 50,572 KB |
最終ジャッジ日時 | 2024-10-15 04:51:07 |
合計ジャッジ時間 | 3,142 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 12 ms
5,248 KB |
testcase_09 | AC | 26 ms
5,248 KB |
testcase_10 | AC | 28 ms
5,248 KB |
testcase_11 | AC | 26 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | AC | 67 ms
50,572 KB |
testcase_16 | AC | 30 ms
11,696 KB |
コンパイルメッセージ
main.cpp: In function 'double pf()': main.cpp:140:1: warning: control reaches end of non-void function [-Wreturn-type] 140 | } | ^
ソースコード
#include "bits/stdc++.h" using namespace std; //------------------------------- #define int long long //------------------------------- #define rep(i, n) for (int i = 0; i < (n); i++) #define FOR(i, a, b) for (int i = (a), int size##i = (b); i < size##i; i++) #define FORR(i, a, b) for (int i = (a); i >= (b); i--) #define all(v) v.begin(), v.end() #define tint(str) atoi(str.c_str()) #define tstr(num) to_string(num) #define prt(x) cout << x << endl #ifdef DEBUG #define dbg(x) cout << "[DBG] " << x << endl #else #define dbg(x) #endif typedef long long ll; typedef long double ld; typedef pair<int, int> PII; typedef vector<int> VI; typedef vector<vector<int>> VVI; template<typename T> using PQ = priority_queue<T, vector<T>, greater<T>>; template<typename T> using RPQ = priority_queue<T, vector<T>, less<T>>; int dx[4] = {0, 1, 0, -1}; int dy[4] = {1, 0, -1, 0}; //------------------------------- int n; double p, q, r; string s; int cr = 0; char gnt() { if (cr == s.size()) { return 0; } switch (s[cr]) { case '(': cr++; return '('; case ')': cr++; return ')'; case ' ': cr++; return gnt(); case 'Y': cr += 3; return 'Y'; case 'N': cr += 2; return 'N'; case 'r': cr += 6; return 'r'; case 'a': cr += 3; return 'a'; case 'o': cr += 2; return 'o'; default: return -1; } } inline double myrand(double a, double b) { return a * b * p + (1 - a * b) * q; } inline double myor(double a, double b) { return (a + b - a * b) * (1 - r) + ((1 - a) * (1 - b)) * r; } inline double myand(double a, double b) { return a * b * (1 - r) + (1 - a * b) * r; } double pe(); double pt(); double pf(); double pe() { auto a = pt(); int prev = cr; while(gnt() == 'o') { a = myor(a, pt()); prev = cr; } cr = prev; return a; } double pt() { auto a = pf(); int prev = cr; while(gnt() == 'a') { a = myand(a, pf()); prev = cr; } cr = prev; return a; } double pf() { switch(gnt()) { case 'Y': return 1; case 'N': return 0; case '(': { auto a = pe(); gnt(); return a; } case 'r': { gnt(); auto a = pe(); auto b = pe(); gnt(); return myrand(a, b); } } } signed main() { char c; cin >> n >> p >> q >> r; getline(cin, s); getline(cin, s); cout << (int)(pe() * 100) << endl; return 0; }