結果

問題 No.190 Dry Wet Moist
ユーザー Lepton_sLepton_s
提出日時 2015-04-22 00:27:06
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 1,274 bytes
コンパイル時間 773 ms
コンパイル使用メモリ 90,756 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-04 20:24:08
合計ジャッジ時間 2,629 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 36 ms
5,376 KB
testcase_13 AC 46 ms
5,376 KB
testcase_14 AC 36 ms
5,376 KB
testcase_15 AC 50 ms
5,376 KB
testcase_16 AC 65 ms
5,376 KB
testcase_17 AC 9 ms
5,376 KB
testcase_18 AC 29 ms
5,376 KB
testcase_19 AC 62 ms
5,376 KB
testcase_20 AC 44 ms
5,376 KB
testcase_21 AC 7 ms
5,376 KB
testcase_22 AC 75 ms
5,376 KB
testcase_23 AC 78 ms
5,376 KB
testcase_24 AC 80 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 51 ms
5,376 KB
testcase_28 AC 23 ms
5,376 KB
testcase_29 AC 29 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:67:19: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 2 has type ‘ll’ {aka ‘long long int’} [-Wformat=]
   67 |         printf("%ld %ld %ld\n", res[0], res[1], res[2]);
      |                 ~~^             ~~~~~~
      |                   |                  |
      |                   long int           ll {aka long long int}
      |                 %lld
main.cpp:67:23: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 3 has type ‘ll’ {aka ‘long long int’} [-Wformat=]
   67 |         printf("%ld %ld %ld\n", res[0], res[1], res[2]);
      |                     ~~^                 ~~~~~~
      |                       |                      |
      |                       long int               ll {aka long long int}
      |                     %lld
main.cpp:67:27: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 4 has type ‘ll’ {aka ‘long long int’} [-Wformat=]
   67 |         printf("%ld %ld %ld\n", res[0], res[1], res[2]);
      |                         ~~^                     ~~~~~~
      |                           |                          |
      |                           long int                   ll {aka long long int}
      |                         %lld

ソースコード

diff #

#include <algorithm>
#include <climits>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <ctime>
#include <iostream>
#include <sstream>
#include <functional>
#include <map>
#include <string>
#include <cstring>
#include <vector>
#include <queue>
#include <stack>
#include <deque>
#include <set>
#include <list>
#include <numeric>
using namespace std;
const double PI = 3.14159265358979323846;
const double EPS = 1e-12;
const int INF = 1<<25;
typedef pair<int,int> P;
typedef long long ll;
typedef unsigned long long ull;

map<int, int> dc;

int main(){
	int n;
	cin>>n;
	n *= 2;
	vector<ll> d(n);
	for(int i = 0; i < n; i++) cin>>d[i];
	sort(d.begin(), d.end());
	// for(int i = 0; i < n; i++) ++dc[d[i]];
	ll res[3] = {};
	int pos = n-1;
	// while(pos>=0 && d[0]+d[pos]>=0) pos++;
	for(int i = 0; i < n; i++){
		while(pos>i && d[i]+d[pos]>=0) pos--;
		if(pos<=i){
			res[0] = i;
			break;
		}
		pos--;
	}
	pos = 0;
	for(int i = n-1; i >= 0; i--){
		while(pos<i && d[i]+d[pos]<=0) pos++;
		if(pos>=i){
			res[1] = n-i-1;
			break;
		}
		pos++;
	}
	pos = n-1;
	for(int i = 0; i < n; i++){
		while(pos>i&& d[i]+d[pos]>0) pos--;
		if(pos<=i) break;
		if(d[i]+d[pos]==0){
			res[2]++;
			pos--;
		}
	}
	printf("%ld %ld %ld\n", res[0], res[1], res[2]);
	return 0;
}
0