結果

問題 No.11 カードマッチ
ユーザー horiesiniti
提出日時 2016-07-17 18:19:08
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 501 bytes
コンパイル時間 530 ms
コンパイル使用メモリ 70,612 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-15 15:25:11
合計ジャッジ時間 1,255 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 19
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:9:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    9 |         scanf("%d %d %d",&w,&h,&n);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~~~
main.cpp:14:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   14 |                 scanf("%d %d",&s,&k);
      |                 ~~~~~^~~~~~~~~~~~~~~

ソースコード

diff #

#include <iostream>
#include <set>
#include <map>
#include <stdio.h>

int main() {
	// your code goes here
	int w,h,n;
	scanf("%d %d %d",&w,&h,&n);
	std::map<int,long long int> ws;
	std::set<int> hs;
	for(int i=0;i<n;i++){
		int s,k;
		scanf("%d %d",&s,&k);
		ws[s]++;
		hs.insert(k);
	}
	std::map<int,long long int>::iterator it;
	long long int ans=0;
	for(it=ws.begin();it!=ws.end();it++){
		ans+=(h-(*it).second);
	}
	ans+=((long long int)w-ws.size())*hs.size();
	printf("%lld\n",ans);
	return 0;
}
0