結果
| 問題 |
No.8001 確率論ってこういうものですよね
|
| コンテスト | |
| ユーザー |
mudbdb
|
| 提出日時 | 2017-06-24 18:28:14 |
| 言語 | C90 (gcc 12.3.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 5,000 ms |
| コード長 | 858 bytes |
| コンパイル時間 | 520 ms |
| コンパイル使用メモリ | 22,528 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-10-04 02:57:17 |
| 合計ジャッジ時間 | 1,057 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 10 |
コンパイルメッセージ
main.c: In function ‘main’:
main.c:22:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
22 | scanf("%lf %lf",&x,&y);
| ^~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h>
// A:m,m
// B:m,w
// C:w,m
// D:w,w
// X=P(A or B)=P(A)+P(B) => 0<=P(B)<=X, 0<=P(A)<=X
// Y=P(A or C)=P(A)+P(C) => 0<=P(A)<=Y
// 1-X=P(C or D)=P(C)+P(D)
// 1-Y=P(B or D)=P(B)+P(D) => 0<=P(B)<=1-Y
//
// X-min(X,Y)<=X-P(A)==P(B)<=min(X,1-Y)
//
// X==0 => P(A)==0, P(B)==0, P(C)==Y, P(D)==1-Y
// X==1 => P(C)==0, P(D)==0, P(A)==Y, P(B)==1-Y
// Y==0 => P(A)==0, P(C)==0, P(B)==X, P(D)==1-X
// Y==1 => P(B)==0, P(D)==0, P(A)==X, P(C)==1-X
double min(double a, double b) {
return ((a<=b)?a:b);
}
int main() {
double x,y;
scanf("%lf %lf",&x,&y);
if (x == 0.0) {
printf("%f %f\n",0.0,0.0);
} else if (x == 1.0) {
printf("%f %f\n",1.0-y,1.0-y);
} else if (y == 0.0) {
printf("%f %f\n",x,x);
} else if (y == 1.0) {
printf("%f %f\n",0.0,0.0);
} else {
printf("%f %f\n",min(x,1-y),x-min(x,y));
}
return 0;
}
mudbdb