This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <cstdio> | |
#include <algorithm> | |
#define x first | |
#define y second | |
using namespace std; | |
const int N = 100; | |
int n, ans; | |
char a[N][N]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <cstdio> | |
#include <cstring> | |
#include <vector> | |
#include <limits> | |
#define GRAVE 2 | |
#define HOLE 1 | |
#define START 3 | |
#define END 4 | |
#define NONE 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
test 2 | |
--- | |
Input: | |
Job 1 5 to 1 2 | |
Job 1 8 to 4 8 | |
Job 2 1 to 3 2 | |
Job 4 2 to 4 4 | |
Job 4 6 to 6 4 | |
Job 7 2 to 8 5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Một phần rất thú vị về việc đi lễ nhà thờ là khi mọi người chúc bình an cho nhau. Họ bắt tay vào bảo nhau "chúc bình an". Mirko rất thích tục lệ này và muốn bắt tay càng nhiều người càng tốt. | |
Bên trong nhà thờ, có R hàng ghế, mỗi hàng có thể chứa tối đa S người. Ta có thể tưởng tượng những hàng ghế như 1 lưới ô vuông với kích thước RxS, mỗi ô vuông sẽ đại diện một chỗ ngồi, có thể có người hoặc không. Ta giả sử mỗi người bắt tay tất cả những người bên cạnh. Như vậy, mỗi người có thể bắt tay với tối đa 8 người (xem hình). | |
Sơ đồ vị trí chỗ ngồi của mọi người đã được đưa cho Mairko từ trước. Còn Mirko thì, dĩ nhiên, đi trễ lễ sáng và sẽ ngồi vào một chỗ trống nơi mà anh ta có thể bắt tay với nhiều người nhất. Nếu không còn chỗ trống nào thì Mirko đành đi về và chờ tới lễ buổi tối. Ta giả sử không có ai đến sau khi Mirko vào nhà thờ. | |
Tính _tổng_ số lượng bắt tay được thực hiện trong buổi lễ sáng hôm đó. | |
INPUT: | |
Dòng đầu tiên chưa 2 số nguyên dương R và S (1<=R,S<=50) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "XHTML1-s.dtd" > | |
<html xmlns="http://www.w3.org/TR/1999/REC-html-in-xml" xml:lang="en" lang="en"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"></meta> | |
<style> | |
.bodyContainer { | |
font-family: Arial, Helvetica, sans-serif; | |
text-align: center; |